-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
60 lines (58 loc) · 1.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './pages/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
main: '#24CD88',
sub: '#FF8300',
black: { 400: '#191F28', 500: '#000000' },
slate: '#677A90',
brown: '#7C7268',
gray: '#CCCCCC',
green: { 100: '#24CD88', 200: '#24CD88' },
// effect
'effect-gradation-start': '#00C883',
'effect-gradation-end': '#01AEB7',
'bright-effect-gradation-start': '#F1C93D',
'bright-effect-gradation-end': '#93F358',
// background
'background-white': '#FFFFFF',
'background-gray': '#EFF3F6',
// error
'error-red': '#FF8080',
'error-green': 'rgba(36, 205, 136, 0.3)',
// profile
'profile-green': 'rgba(36, 205, 136, 0.1)',
},
borderRadius: {
DEFAULT: '10px',
},
dropShadow: {
white: '0px 0px 7px rgba(139, 149, 161, 0.25)',
colored: '0px 0px 7px rgba(0, 0, 0, 0.25)',
graph: '0px 0px 4px rgba(0, 0, 0, 0.25)',
},
boxShadow: {
white: '0px 0px 7px rgba(139, 149, 161, 0.25)',
},
},
fontWeight: {
light: 300,
regular: 400,
medium: 500,
bold: 700,
},
fontSize: {
title1: '28px',
title2: '24px',
headline: '20px',
body1: '18px',
body2: '16px',
small: '14px',
caption: '12px',
overline: '10px',
},
},
plugins: [],
};