-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (57 loc) · 1.41 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/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
// text
't-brown': '#B58673',
't-black': '#1a202c',
't-text': '#363A3D',
't-green': '#3CA31B',
't-orange': '#f68b1f',
't-white': '#ffffff',
't-gray': '#d1cfcf',
't-blue': '#1777FF',
't-red': '#E53E3E',
// background
'b-black': '#363636',
'b-green': '#3CA31B',
'b-orange': '#f68b1f',
'b-white': '#ffffff',
'b-blue': '#044da2',
'b-red': '#E53E3E',
'b-gray': '#9F9F9F',
'b-primary-to': '#D0A797',
'b-primary-mid': '#F6F0EF',
'b-primary-from': '#EBD9D2',
'b-second-to': '#CFA595',
'b-second-from': '#F6F0EF',
'b-tab-to': "#FDF7F4",
'b-tab-from': "#FFFDFE",
'b-button': '#AA715B',
'b-success-opacity': '#cdf7ec',
'b-success': '#71be44',
// border
success: '#06d6a0',
primary: '#ced4da',
error: '#E53E3E',
},
},
fontSize: {
xs: '0.6rem',
sm: '0.75rem',
md: '0.9rem',
lg: '1rem',
xl: '1.2rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2rem',
},
},
plugins: []
}