Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 714 Bytes
61d29fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#e8eaeb',
100: '#c5cace',
500: '#354F52',
600: '#2e4346',
700: '#27383a',
},
sky: {
50: '#e8eaeb',
100: '#c5cace',
500: '#354F52',
600: '#2e4346',
700: '#27383a',
},
neutral: {
600: '#354F52',
700: '#2e4346',
},
slate: {
500: '#64748B',
600: '#475569',
700: '#334155',
},
},
},
},
plugins: [],
}
|