-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 940 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
transform: {
rs: (content) => content.replace(/(?:^|\s)class:/g, ' '),
},
},
theme: {
extend: {
colors: {
darcula: {
gray: "#191919",
black: "#0a0a0a",
"purple-50": "#39344a",
"purple-100": "#55507e",
"purple-200": "#52406d",
"purple-300": "#44355B",
"purple-400": "#2c2432",
"purple-500": "#251B49",
"purple-600": "#0f172a",
"yellow-100": "#ffde91",
"yellow-200": "#fcc661",
"yellow-300": "#FFBC1F",
"yellow-400": "#ff7e6e",
"yellow-500": "#ff7170",
"yellow-600": "#F26B3A",
},
},
fontFamily: {
hubot: ["var(--font-hubot-sans)"],
mona: ["var(--font-mona-sans)"],
},
},
},
plugins: [],
}