-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
94 lines (93 loc) · 1.86 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
88
89
90
91
92
93
94
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
xx: '0px',
xs: '320px',
sm: '576px',
md: '768px',
lg: '1024px',
xl: '1280px',
},
extend: {
dropShadow: {
glow: [
'0 0px 20px rgba(255,255, 255, 0.35)',
'0 0px 65px rgba(255, 255,255, 0.2)',
],
blueGlow: ['0 0px 5px rgba(81, 244, 255, 0.7)'],
},
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
},
colors: {
cyan: {
100: '#37888B',
},
redorange: {
100: '#AC3F00',
},
yellow: {
100: '#FFBC21',
},
jade: {
100: '#4C855A',
},
dark_red: {
100: '#6D1E00',
},
off_white: {
100: '#F9F3E9',
},
tan: {
100: '#C49D52',
},
tan_2: {
100: '#DDC78B',
},
green: {
100: '#358300',
},
s2025black: {
100: '#1E1E1E',
},
blue: {
100: '#1ED4FE',
200: '#536F91',
300: '#2B3941',
400: '#172335',
500: '#141719',
},
dark_blue_figma: '#1B1F23',
orange: {
100: '#EC9655',
200: '#1B1F23',
},
brown: {
100: '#9A654D',
200: '#482820',
},
pink: {
100: '#C3557D',
},
offblack: {
100: '#172335',
},
},
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};
export default config;