-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
83 lines (72 loc) · 1.53 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
75
76
77
78
79
80
81
82
/** @type {import('tailwindcss').Config} */
/*
Tanzania flag colors generated using:
- https://www.flagcolorcodes.com/tanzania
- https://uicolors.app/create
*/
// tz_flag_green = {
// '50': '#f0fdf2',
// '100': '#dcfce1',
// '200': '#bbf7c5',
// '300': '#85f098',
// '400': '#49df65',
// '500': '#1eb53a', //main
// '600': '#15a430',
// '700': '#148129',
// '800': '#156625',
// '900': '#145321',
// '950': '#052e0f',
// }
// tz_flag_yellow = {
// '50': '#fefce8',
// '100': '#fffac2',
// '200': '#fff389',
// '300': '#ffe445',
// '400': '#fcd116', //main
// '500': '#ecb706',
// '600': '#cc8e02',
// '700': '#a26406',
// '800': '#864f0d',
// '900': '#724011',
// '950': '#432105',
// }
// tz_flag_blue = {
// '50': '#f0faff',
// '100': '#e0f4fe',
// '200': '#b9ebfe',
// '300': '#7cddfd',
// '400': '#36cdfa',
// '500': '#0cb7eb',
// '600': '#00a3dd', // main
// '700': '#0176a3',
// '800': '#066386',
// '900': '#0b526f',
// '950': '#07344a',
// }
//
const darkPrimary = "#0F103F"
const lightPrimary = "#2B1392"
const accentPurple = "#2C05F2"
const accentYellow = "#FFCD29"
const accentPink = "#FF93DD"
const accentGreen = "#048041"
module.exports = {
content: ["./**/*.html", '!./dev_db',
],
theme: {
extend: {
colors: {
// tz_flag_green,
// tz_flag_yellow,
// tz_flag_blue
darkPrimary,
lightPrimary,
accentPurple,
accentYellow,
accentGreen,
accentPink
},
},
},
plugins: [],
}