forked from copilot-platforms/custom-app-base
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
126 lines (125 loc) · 2.63 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const config: Config = {
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: {
gray: {
'100': '#F8F9FB',
'150': '#EFF1F4',
'200': '#DFE1E4',
'300': '#C9CBCD',
'400': '#90959D',
'500': '#6B6F76',
'600': '#212B36',
},
brand: {
light: '#E3FFEE',
'mid-light': '#7DDAA0',
primary: '#09AA6C',
'mid-dark': '#003F27',
dark: '#00160E',
},
text: '#212B36',
'text-secondary': '#6B6F76',
'text-disabled': '#90959D',
border: '#DFE1E4',
'border-hover': '#C9CBCD',
'border-disabled': '#EFF1F4',
'border-active': '#212B36',
},
fontSize: {
'heading-4xl': [
'2.735rem',
{
lineHeight: '1.21',
fontWeight: '500',
},
],
'heading-3xl': [
'1.875rem',
{
lineHeight: '1.27',
fontWeight: '500',
},
],
'heading-2xl': [
'1.5rem',
{
lineHeight: '1.33',
fontWeight: '500',
},
],
'heading-xl': [
'1.25rem',
{
lineHeight: '1.4',
fontWeight: '500',
},
],
'heading-lg': [
'1rem',
{
lineHeight: '1.5',
fontWeight: '500',
},
],
'heading-md': [
'.875rem',
{
lineHeight: '1.57',
fontWeight: '500',
},
],
'heading-sm': [
'.75rem',
{
lineHeight: '1.66',
fontWeight: '500',
},
],
'heading-xs': [
'.625rem',
{
lineHeight: '1.8',
fontWeight: '500',
},
],
'body-lg': [
'1rem',
{
lineHeight: '1.5',
fontWeight: '400',
},
],
'body-md': [
'.875rem',
{
lineHeight: '1.57',
fontWeight: '400',
},
],
'body-sm': [
'.75rem',
{
lineHeight: '1.66',
fontWeight: '400',
},
],
'body-xs': [
'.625rem',
{
lineHeight: '1.8',
fontWeight: '400',
},
],
},
},
},
plugins: [],
};
export default config;