-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
64 lines (62 loc) · 1.37 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
import type { Config } from 'tailwindcss'
import { fontFamily } from 'tailwindcss/defaultTheme'
import tailwindcssAnimate from 'tailwindcss-animate'
export const statusColors = {
sPurple: '#AD1FEA',
sOrange: '#F49F85',
sCyan: '#62BCFA',
}
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}',
],
theme: {
extend: {
container: {
center: true,
padding: {
DEFAULT: '1.5rem',
md: '2.5rem',
},
},
fontSize: {
xs: '13px',
},
fontFamily: {
sans: ['var(--font-sans)', ...fontFamily.sans],
},
colors: {
'@purple': {
400: '#C75AF6',
500: '#AD1FEA',
},
'@blue': {
100: '#F7F8FD',
200: '#F2F4FE',
300: '#CFD7FF',
400: '#7C91F9',
500: '#4661E6',
700: '#656EA3',
800: '#3A4374',
900: '#373F68',
},
'@gray': '#647196',
'@red': {
400: '#E98888',
500: '#D73737',
},
...statusColors,
},
borderRadius: {
dlg: '10px',
},
boxShadow: {
blue: '0 10px 40px -7px rgba(55, 63, 104, 0.35)',
},
},
},
plugins: [tailwindcssAnimate],
}
export default config