-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
113 lines (113 loc) · 2.58 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{vue,js,ts,jsx,tsx,css}'],
darkMode: 'class',
theme: {
extend: {
fontSize: {
xs: '10px',
sm: '12px',
base: '14px',
lg: '16px',
xl: '18px',
xxl: '28px',
},
fontWeight: {
light: 300,
normal: 400,
medium: 500,
bold: 700,
},
colors: {
red: { 100: '#ff4264', 'pink-orange': '#FF9167', system: '#F61D1D' },
yellow: { 100: '#eeb113' },
blue: {
100: '#3e9aff',
dark: '#1D2A31',
columbia: 'C8D5D9',
'dark-sky': '#487DE3',
},
green: { 100: '#05c168', system: '#24CC2B' },
rose: { briliant: '#ff4e9f' },
black: {
100: '#000000',
200: '#1f1f1f',
300: '#141414',
400: '#050505',
500: '#333333',
600: '#252525',
eerie: '#13171A',
chromaphobic: '#292929',
crayola: '#2D363B',
arsenic: '#39444A',
'crayola-50': '#2D363B80',
},
white: {
100: '#ffffff',
200: '#f7f7f7',
300: '#fcfcfc',
400: '#eff1f3',
},
gray: {
100: '#8d8d8d',
200: '#363636',
300: '#313131',
400: '#dcdcdc',
500: '#2c2c2c',
600: '#3b3b3b',
700: '#eeeeee',
800: '#dbdbdb',
900: '#f5f5f5',
bright: '#E4E9EB',
'bermuda-grey': '#74919C',
zinc: '#C8D5D9',
'zinc-85': '#C8D5D9D9',
'zinc-40': '#C8D5D966',
spanish: '#989898',
myst: '#555F64',
'spanish-light': '#8E9498',
'link-water': '#CCD8DC',
},
},
width: {
xs: '14px',
sm: '16px',
md: '18px',
lg: '20px',
xl: '24px',
xxl: '32px',
xxxl: '34px',
},
height: {
xs: '14px',
sm: '16px',
md: '18px',
lg: '20px',
xl: '24px',
xxl: '32px',
xxxl: '34px',
fullxs: 'calc(100vh - 14px)',
},
borderWidth: {
1: '1px',
default: '1.5px',
},
borderRadius: {
sm: '5px',
md: '10px',
},
boxShadow: {
sm: '0 0 8px 3px rgba(0, 0, 0, 0.05)',
smLight: '0 0 8px 3px rgba(126, 126, 126, 0.25)',
},
boxShadowColor: {
dark: {
100: 'rgba(126, 126, 126, 0.25)',
},
},
content: {
blank: '""',
},
},
},
}