-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
67 lines (65 loc) · 1.34 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
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: {
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;