-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
49 lines (48 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontSize: {
'8xl': '6rem',
'6xl': '3.75rem',
'5xl': '3rem',
'3xl': '1.875rem',
'2xl': '1.5rem',
'xl' : '1.25rem',
'm' : '1.0rem',
'ms' : '0.85rem',
's' : '0.8rem',
'xxs': '0.625rem',
'2xs' : '0.55rem',
'3xs': '0.5rem',
'5xs': '0.1rem',
},
colors: {
theme: {
background: '#18181B',
font: '#474747',
},
primary: {
yellow: '#FFE247',
hotpink: '#FF3C76',
teal: '#00ECC1',
blue: '#1753F1',
purple: '#946AFE',
darkgray: '#18181B',
whitegray: '#D9D9D9',
logo: '#27334B',
bg: '#474747',
orange: '#E3834D',
gray:'#747474',
ivory:'#F7F8FB',
pink: '#FFD8D8',
green : '#9FEEB5',
},
},
},
},
plugins: [],
}