Spaces:
Build error
Build error
File size: 625 Bytes
5445a25 | 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 | /** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
brutal: {
black: '#0a0a0a',
white: '#fafafa',
gray: '#1a1a1a',
accent: '#ff3d00',
}
},
fontFamily: {
mono: ['JetBrains Mono', 'monospace'],
sans: ['Inter', 'system-ui', 'sans-serif'],
},
boxShadow: {
brutal: '4px 4px 0px 0px #0a0a0a',
'brutal-hover': '6px 6px 0px 0px #0a0a0a',
}
},
},
plugins: [],
} |