-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
91 lines (91 loc) · 2.16 KB
/
tailwind.config.cjs
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
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
animation: {
pulse: 'pulse 1.2s infinite',
},
boxShadow: {
card: 'inset -1px -1px 24px -9px rgba(114, 158, 255, 0.5)',
circle: '0 0 20px #00020c, inset 0 0 20px #2c4776',
glow: '0px 0px 26px 0px rgba(0, 64, 255, 1)',
orbits: '0 0 5px 2px #2c4776',
ring: 'inset -1px -1px 24px -9px rgb(101 130 255 / 50%), 0px 0px 26px -2px rgb(0 64 255)',
},
colors: {
primary: {
DEFAULT: '#008ef1',
25: '#0a9aff',
50: 'rgba(0, 128, 255, 0.8)',
100: '#0096ff',
200: '#73b9ff',
400: '#16487a',
500: '#2c4776',
600: '#003366',
700: 'rgba(2, 28, 48, 0.2)',
800: '#00264d',
850: 'rgba(2, 28, 48, 0.4)',
900: '#001031',
1000: '#00020e',
},
gray: {
DEFAULT: '#4a4a4a',
100: '#d2d2d2',
200: '#ccc',
},
fire: {
DEFAULT: '#f5222d',
},
accent: '#1295f3',
'light-blue': '#63bfff',
'off-black': '#1f1f1f',
midnight: '#010007',
},
fontFamily: {
stylized: ['Elemental', 'sans-serif'],
},
fontSize: {
xxs: '0.55rem',
xs: '0.6rem',
sm: '0.7rem',
tiny: '0.8rem',
base: '0.9rem',
md: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'4.5xl': '3rem',
'5xl': '3.75rem',
'6xl': '4rem',
'7xl': '5rem',
ginormous: '17rem',
},
height: {
preview: '4.6875rem',
128: '32rem',
},
keyframes: {
pulse: {
'0%': { opacity: 0.85 },
'50%': { opacity: 0.4 },
'100%': { opacity: 0.85 },
},
},
maxWidth: {
main: '950px',
},
minHeight: {
body: '40rem',
},
minWidth: {
preview: '4.6875rem',
},
screens: {
xs: '400px',
},
},
},
plugins: [],
}