-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
135 lines (134 loc) · 4.67 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-poppins)'],
},
screens: {
xs: '555px',
},
dropShadow: {
glow: '0 0 12px #7E70F7',
strong: '0 0px 5px #7E70F7',
},
backgroundImage: {
'nad-gradient': `linear-gradient(to bottom,
rgba(17, 17, 20, 0.3) 5%,
rgba(105, 59, 255, 0.73) 60%,
rgba(105, 59, 255, 1) 86%,
rgba(17, 17, 20, 0.9) 98%
)`,
'nad-radial-gradient': `radial-gradient(circle,
rgba(94, 76, 225, 1) 5%,
rgba(82, 61, 239, 0) 65%
)`,
},
colors: {
white: '#FFFFFF',
black: '#000000',
gray: {
50: '#F7F9FD',
100: '#DEE0E4',
200: '#C5C7CB',
300: '#ACAEB2',
400: '#939599',
500: '#7A7C80',
600: '#616367',
700: '#484A4E',
800: '#2F3135',
850: '#202124',
900: '#111114',
},
purple: {
50: '#D6DEFF',
100: '#B9C0FE',
200: '#9D9FFD',
300: '#8A84FB',
400: '#7E70F7',
500: '#7560F1',
600: '#6C52E5',
700: '#5C42C8',
800: '#412C8E',
900: '#291C5C',
},
red: {
50: '#FFEBF2',
100: '#FEB9CC',
200: '#FC8A9E',
300: '#FA616F',
400: '#F54045',
500: '#EE2D28',
600: '#DF2216',
700: '#BA1909',
800: '#720E02',
900: '#330600',
},
green: {
50: '#A9FFBF',
100: '#79FF9F',
200: '#50FF87',
300: '#32E975',
400: '#1DC865',
500: '#0FA755',
600: '#078646',
700: '#036535',
800: '#014524',
900: '#002413',
},
background: '#000000',
foreground: '#FFFFFF',
border: 'hsl(var(--border))',
input: 'hsl(var(--input))',
ring: 'hsl(var(--ring))',
primary: {
DEFAULT: 'hsl(var(--primary))',
foreground: 'hsl(var(--primary-foreground))',
},
secondary: {
DEFAULT: 'hsl(var(--secondary))',
foreground: 'hsl(var(--secondary-foreground))',
},
destructive: {
DEFAULT: 'hsl(var(--destructive))',
foreground: 'hsl(var(--destructive-foreground))',
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))',
},
popover: {
DEFAULT: 'hsl(var(--popover))',
foreground: 'hsl(var(--popover-foreground))',
},
card: {
DEFAULT: 'hsl(var(--card))',
foreground: 'hsl(var(--card-foreground))',
},
},
fontSize: {
hero: ['48px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
headline1: ['36px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
headline2: ['32px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
headline3: ['24px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
headline4: ['20px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
accent: ['20px', { lineHeight: '120%', letterSpacing: '-0.02em', fontWeight: 700 }],
subtitle1: ['16px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 700 }],
subtitle2: ['16px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 400 }],
subtitle3: ['14px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 700 }],
body1: ['14px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 500 }],
body2: ['14px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 400 }],
body3: ['12px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 500 }],
body4: ['12px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 400 }],
caption: ['10px', { lineHeight: '150%', letterSpacing: '-0.02em', fontWeight: 400 }],
button1: ['20px', { lineHeight: 'auto', letterSpacing: '-0.02em', fontWeight: 700 }],
button2: ['16px', { lineHeight: 'auto', letterSpacing: '-0.02em', fontWeight: 700 }],
button3: ['12px', { lineHeight: 'auto', letterSpacing: '-0.02em', fontWeight: 700 }],
button4: ['12px', { lineHeight: 'auto', letterSpacing: '-0.02em', fontWeight: 500 }],
button5: ['10px', { lineHeight: 'auto', letterSpacing: '-0.02em', fontWeight: 500 }],
},
},
},
plugins: [],
}