-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
67 lines (65 loc) · 1.58 KB
/
tailwind.config.ts
File metadata and controls
67 lines (65 loc) · 1.58 KB
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
import type { Config } from 'tailwindcss';
import plugin from 'tailwindcss/plugin';
const config: Config = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
screens: {
sm: '375px',
md: '744px',
lg: '1024px',
},
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
gray: {
white: '#ffffff',
'light-01': '#fdfdfd',
'light-02': '#fafbfb',
'normal-01': '#f0f1f3',
'normal-02': '#d8d9db',
'normal-03': '#c0c1c2',
'dark-01': '#b4b5b6',
'dark-02': '#909192',
'dark-03': '#6c6c6d',
darker: '#545455',
black: '#222222',
},
green: {
'light-01': '#e6f6f4',
'light-02': '#d9f2ef',
'light-03': '#b0e4dd',
'normal-01': '#00a991',
'normal-02': '#009883',
'normal-03': '#008774',
'dark-01': '#007f6d',
'dark-02': '#006557',
'dark-03': '#004c41',
darker: '#003b33',
},
blue: {
light: '#d9ebff',
'light-active': '#009cf4',
normal: '#007aff',
},
red: {
pink: '#ff337e',
normal: '#dc2626',
},
},
},
},
plugins: [
plugin(({ addUtilities }) => {
addUtilities({
'.hover-dim': {
'@apply transition-all duration-150 hover:brightness-90': {},
},
});
}),
],
};
export default config;