-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (59 loc) · 1.7 KB
/
tailwind.config.js
File metadata and controls
59 lines (59 loc) · 1.7 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./_layouts/**/*.html',
'./_includes/**/*.html',
'./pages/**/*.{md,markdown,html}',
'./*.{md,html}'
],
safelist: [
// Grid column classes used dynamically in Jekyll templates
'col-start-1',
'col-start-2',
'col-start-3',
'col-start-4',
'col-end-2',
'col-end-3',
'col-end-4',
'col-end-5'
],
theme: {
extend: {
colors: {
// TEAL
"sl-teal-100": "#DFF0F3", // Original Light
"sl-teal-400": "#44CDD4", // +10% L
"sl-teal-500": "#2BB3BB", // Original
"sl-teal-600": "#218C91", // -10% L
"sl-teal-700": "#176468", // -20% L
// MAGENTA
"sl-magenta-100": "#F9EAF1", // Original Light
"sl-magenta-400": "#E82681",
"sl-magenta-500": "#C41565", // Original
"sl-magenta-600": "#981050",
"sl-magenta-700": "#6A0B37", // -20% L
// ORANGE
"sl-orange-100": "#FDEDE4", // Original Light
"sl-orange-400": "#F3A477",
"sl-orange-500": "#EF8547", // Original
"sl-orange-600": "#EB6619",
"sl-orange-700": "#C05111", // -20% L
// YELLOW
"sl-yellow-100": "#FEF9EF", // Original Light
"sl-yellow-400": "#FACF7F",
"sl-yellow-500": "#F8BE4F", // Original
"sl-yellow-600": "#F6AA1D",
"sl-yellow-700": "#D88F09", // -20% L
// GREEN
"sl-green-100": "#F2FAEF", // Original Light
"sl-green-400": "#9ED284",
"sl-green-500": "#7FC45F", // Original
"sl-green-600": "#65AF41",
"sl-green-700": "#508A33", // -20% L
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}