-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.69 KB
/
tailwind.config.ts
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { Config } from 'tailwindcss';
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
transitionDuration: {
DEFAULT: '400ms',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Roboto Mono', 'monospace'],
},
extend: {
spacing: {
'8xl': '96rem',
'9xl': '128rem',
},
borderRadius: {
'4xl': '2rem',
},
colors: {
gray: {
50: '#efefef',
100: '#e6e6e6', // -10
150: '#dddddd', // -10
200: '#d4d4d4', // -10
300: '#c1c1c1', // -20
400: '#a0a0a0', // -35
500: '#808080', // middle
600: '#616161', // +35
700: '#3e3e3e', // +20
800: '#2b2b2b', // +10
850: '#222222', // +10
900: '#191919', // +10
950: '#101010',
},
// accent1: '#16a34a', // green 600
// accent2: '#166534', // green 800
// accent1: '#2563eb', // blue 600
// accent2: '#1e40af', // blue 800
// accent1: '#059669', // emerald 600
// accent2: '#065f46', // emerald 800
accent1: '#4f46e5', // indigo 600
accent2: '#3730a3', // indigo 800
green1: '#15803d',
red1: '#ef4444',
yellow1: '#F5BC29',
},
},
},
plugins: [],
} satisfies Config;