-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
88 lines (86 loc) · 2.16 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
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: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
grey: {
'50': '#f5f6f6',
'100': '#e4e8e9',
'200': '#ccd4d5',
'300': '#a9b5b7',
'400': '#7e8f92',
'500': '#637377',
'600': '#556166',
'700': '#495256',
'800': '#40484a',
'900': '#393e40',
'950': '#232729',
},
'dark-grey': {
'50': '#f4f6f7',
'100': '#e3e8ea',
'200': '#c9d2d8',
'300': '#a4b3bc',
'400': '#778c99',
'500': '#5c707e',
'600': '#4f5f6b',
'700': '#444f5a',
'800': '#3d454d',
'900': '#363c43',
'950': '#24292f',
},
dark: {
'50': '#f7f8f8',
'100': '#edeef1',
'200': '#d8dbdf',
'300': '#b5bac4',
'400': '#8d94a3',
'500': '#6f7788',
'600': '#596070',
'700': '#494f5b',
'800': '#3f434d',
'900': '#373b43',
'950': '#131417',
},
primary: {
'50': '#f1fcfa',
'100': '#d0f7f2',
'200': '#b7f2eb',
'300': '#6aded5',
'400': '#3bc6be',
'500': '#22aaa5',
'600': '#198886',
'700': '#186d6d',
'800': '#185657',
'900': '#184849',
'950': '#08292b',
},
red: {
'50': '#fff1f1',
'100': '#ffe1e1',
'200': '#ffc8c8',
'300': '#ffa1a1',
'400': '#fe6b6b',
'500': '#f85454',
'600': '#e51d1d',
'700': '#c01515',
'800': '#9f1515',
'900': '#841818',
'950': '#480707',
},
},
},
},
plugins: [],
};
export default config;