-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.cjs
77 lines (76 loc) · 2.4 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
text: {
50: '#f2f2f2',
100: '#e6e6e6',
200: '#cccccc',
300: '#b3b3b3',
400: '#999999',
500: '#808080',
600: '#666666',
700: '#4d4d4d',
800: '#333333',
900: '#1a1a1a',
950: '#0d0d0d',
},
background: {
50: '#e8f7fc',
100: '#d1f0fa',
200: '#a3e0f5',
300: '#75d1f0',
400: '#47c2eb',
500: '#19b3e6',
600: '#148fb8',
700: '#0f6b8a',
800: '#0a475c',
900: '#05242e',
950: '#031217',
},
primary: {
50: '#e8f7fd',
100: '#d1f0fa',
200: '#a3e1f5',
300: '#75d1f0',
400: '#46c2ec',
500: '#18b3e7',
600: '#138fb9',
700: '#0f6b8a',
800: '#0a485c',
900: '#05242e',
950: '#021217',
},
secondary: {
50: '#e8f7fd',
100: '#d1effa',
200: '#a3dff5',
300: '#75cff0',
400: '#46c0ec',
500: '#18b0e7',
600: '#138db9',
700: '#0f698a',
800: '#0a465c',
900: '#05232e',
950: '#021217',
},
accent: {
50: '#e8f7fd',
100: '#d1f0fa',
200: '#a3e1f5',
300: '#75d1f0',
400: '#46c2ec',
500: '#18b3e7',
600: '#138fb9',
700: '#0f6b8a',
800: '#0a485c',
900: '#05242e',
950: '#021217',
},
},
},
},
plugins: [],
};