Spaces:
Sleeping
Sleeping
File size: 430 Bytes
3c665d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'bg-primary': '#08080d',
'bg-secondary': '#09090f',
'bg-card': '#0e0e16',
},
fontFamily: {
mono: ['ui-monospace', '"SF Mono"', 'Consolas', '"Liberation Mono"', 'monospace'],
},
},
},
plugins: [],
}
|