-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./App.{js,jsx,ts,tsx}', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['"Archivo"'],
},
colors: {
accent: {
DEFAULT: '#9de5ff',
100: '#003d53',
200: '#0079a5',
300: '#00b6f8',
400: '#4bcfff',
500: '#9de5ff',
600: '#b1eaff',
700: '#c5efff',
800: '#d8f5ff',
900: '#ecfaff',
},
main: {
DEFAULT: '#18007c',
100: '#050018',
200: '#0a0031',
300: '#0f0049',
400: '#140062',
500: '#18007c',
600: '#2800c8',
700: '#4516ff',
800: '#8364ff',
900: '#c1b1ff',
},
highlight: {
DEFAULT: '#a285fc',
100: '#14024b',
200: '#280495',
300: '#3c06e0',
400: '#6938fa',
500: '#a285fc',
600: '#b49cfc',
700: '#c7b4fd',
800: '#d9cdfe',
900: '#ece6fe',
},
light: {
DEFAULT: '#f1eeff',
100: '#120063',
200: '#2400c6',
300: '#512aff',
400: '#a28dff',
500: '#f1eeff',
600: '#f5f3ff',
700: '#f8f6ff',
800: '#faf9ff',
900: '#fdfcff',
},
dark: {
DEFAULT: '#180155',
100: '#050011',
200: '#090022',
300: '#0e0133',
400: '#130145',
500: '#180155',
600: '#2e02aa',
700: '#4604fc',
800: '#8457fd',
900: '#c1abfe',
},
},
},
},
plugins: [],
};