-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.53 KB
/
tailwind.config.js
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
module.exports = {
darkMode: 'class', // https://tailwindcss.com/docs/dark-mode
content: [
'./src/app/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/hook/**/*.{js,ts,jsx,tsx}',
'./src/tools/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
container: {
center: true,
},
screens: {
xs: { max: '475px' },
md: { max: '768px' },
tablet: '640px',
xl: '1366px',
'2xl': '1366px',
},
colors: {
primary: '#fb7185',
'dark-primary': '#93c5fd',
blue: {
DEFAULT: '#43BBFF',
450: '#4383FF',
},
yellow: {
DEFAULT: '#FFE7AB',
},
orange: {
DEFAULT: '#FFAA2C',
},
gray: {},
border: 'hsl(var(--border))',
background: {
400: 'hsl(var(--background-400))',
DEFAULT: 'hsl(var(--background))',
},
foreground: {
DEFAULT: 'hsl(var(--foreground))',
hover: 'hsl(var(--foreground-hover))',
},
'muted-foreground': 'hsl(var(--muted-foreground))',
'page-background': 'hsl(var(--page-background))',
},
backgroundImage: {
gradient: 'linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f)',
},
fontFamily: {
poppins: 'var(--font-poppins)',
noto: 'Noto Serif SC',
candy: 'Candyshop',
},
spacing: {
76: '19rem',
},
},
},
plugins: [require('tailwindcss-textshadow')],
};