b08x commited on
Commit
5445a25
·
verified ·
1 Parent(s): 9333130

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +28 -0
tailwind.config.js ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,ts,jsx,tsx}',
5
+ './components/**/*.{js,ts,jsx,tsx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ brutal: {
11
+ black: '#0a0a0a',
12
+ white: '#fafafa',
13
+ gray: '#1a1a1a',
14
+ accent: '#ff3d00',
15
+ }
16
+ },
17
+ fontFamily: {
18
+ mono: ['JetBrains Mono', 'monospace'],
19
+ sans: ['Inter', 'system-ui', 'sans-serif'],
20
+ },
21
+ boxShadow: {
22
+ brutal: '4px 4px 0px 0px #0a0a0a',
23
+ 'brutal-hover': '6px 6px 0px 0px #0a0a0a',
24
+ }
25
+ },
26
+ },
27
+ plugins: [],
28
+ }