-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 798 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 798 Bytes
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
29
30
31
32
33
34
35
36
37
38
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
dark: {
900: '#0a0a0a',
800: '#1a1a1a',
700: '#2a2a2a',
},
gray: {
600: '#3a3a3a',
500: '#4a4a4a',
400: '#6a6a6a',
300: '#8a8a8a',
},
green: {
500: '#10b981',
600: '#059669',
400: '#34d399',
},
error: '#ef4444',
warning: '#f59e0b',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
},
},
plugins: [
require('tailwind-scrollbar')({ nocompatible: true }),
],
}