-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
87 lines (86 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import type { Config } from 'tailwindcss'
const config: Config = {
important: true,
prefix: 'tw-',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
aspectRatio: {
'4/3': '4 / 3',
'16/9': '16 / 9',
},
boxShadow: {
'invert-xl': '0 8px 10px -8px rgb(255 255 255 / 0.1)',
},
fontSize: {
sm: '0.8rem',
base: '1rem',
},
colors: {
primary: {
100: '#fdd0a1',
200: '#fdc890', // hover (lighter)
300: '#fdbb75', // hover
400: '#ffad57', // pressed
500: '#FF9B33', // default state
},
light: {
500: '#F3F8FB',
},
secondary: {
500: '#FFD05D',
},
success: {
500: '#23AA01',
},
warning: {
500: '#EBCC61',
},
danger: {
300: '#FA7F7F',
500: '#EB5757',
},
info: {
500: '#23AA01',
},
gray: {
100: '#F3F6F9',
200: '#D9D9D9', // disabled button
300: '#B2B2B2', // disabled text
400: '#9FA1A7', // placeholder text
500: '#7D7D83',
},
black: {
200: '#494E53',
300: '#393939',
350: '#1B1B1B',
400: '#181818',
500: '#000000',
},
lightgreen: {
500: '#A4A537',
},
white: {
500: '#fff',
},
default: '#3F4355', // default color text
},
opacity: {
6: '.06',
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1440px',
'2xl': '1536px',
},
},
plugins: [],
}
export default config