-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
110 lines (108 loc) · 2.53 KB
/
tailwind.config.ts
File metadata and controls
110 lines (108 loc) · 2.53 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/containers/**/*.{js,ts,jsx,tsx,mdx}',
'./src/layouts/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
md: '780px',
lg: '1280px',
},
fontFamily: {
pretendard: ['Pretendard', 'sans-serif'],
nanumgothic: ['"Nanum Gothic"', 'sans-serif'],
},
colors: {
black: {
DEFAULT: '#000000',
17: '#171717',
33: '#333236',
'4b': '#4b4b4b',
},
dark: {
DEFAULT: '#212121',
bg: '#1e1e1e',
10: 'hsl(0, 0%, 90%)',
100: 'hsl(0, 0%, 60%)',
200: 'hsl(0, 0%, 30%)',
300: 'hsl(0, 0%, 15%)',
400: 'hsl(0, 0%, 10%)',
450: 'hsl(0, 0%, 8%)',
500: 'hsl(0, 0%, 6%)',
purple: {
DEFAULT: '#2C283A',
hover: '#3D3A4F',
},
},
gray: {
78: '#787486',
'9f': '#9fa6b2',
d9: '#d9d9d9',
ee: '#eeeeee',
f5: '#f5f5f5',
fa: '#fafafa',
},
white: {
DEFAULT: '#ffffff',
hover: '#f7f7f7',
active: '#eeeeee',
disabled: '#ebebeb',
},
violet: {
DEFAULT: '#5534da',
f1: '#f1effd',
e8: '#e8e6f7',
hover: '#3925a8',
active: '#261680',
disabled: '#9FA6B2',
light: {
hover: '#f4f2ff',
active: '#ebe8fc',
disabled: '#ebebeb',
},
},
red: {
DEFAULT: '#D6173A',
hover: '#b51230',
active: '#9c0823',
},
green: {
DEFAULT: '#7ac555',
},
purple: {
DEFAULT: '#760dde',
},
orange: {
DEFAULT: '#ffa500',
},
blue: {
DEFAULT: '#76a5ea',
},
pink: {
DEFAULT: '#e876ea',
},
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
animation: {
'scroll-horizontal': 'scroll-horizontal 20s linear infinite',
},
keyframes: {
'scroll-horizontal': {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
darkMode: 'selector',
};
export default config;