LethalLuck commited on
Commit
f8fa42e
·
verified ·
1 Parent(s): 60576bb

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +21 -0
tailwind.config.js ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ police: {
11
+ blue: '#0f172a',
12
+ light: '#1e293b',
13
+ accent: '#3b82f6',
14
+ text: '#f8fafc',
15
+ muted: '#94a3b8'
16
+ }
17
+ }
18
+ },
19
+ },
20
+ plugins: [],
21
+ }