anycoder-030b6d31 / tailwind.config.js
b08x's picture
Upload tailwind.config.js with huggingface_hub
5445a25 verified
raw
history blame contribute delete
625 Bytes
/** @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: [],
}