-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 847 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (34 loc) · 847 Bytes
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
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
// Dracula color palette
colors: {
drBackground: "#282a36",
drCurrentLine: "#44475a",
drForeGround: "#f8f8f2",
drComment: "#6272a4",
drCyan: "#8be9fd",
drGreen: "#50fa7b",
drOrange: "#ffb86c",
drPink: "#ff79c6",
drPurple: "#bd93f9",
drRed: "#ff5555",
drYellow: "#f1fa8c",
// 80s after dark
adBgColor: "#1b1d36",
adMainColor: "#fca6d1",
adCaretColor: "#99d6ea",
adSubColor: "#99d6ea",
adTextColor: "#fca6d1",
adErrorColor: "#fffb85",
},
},
},
variants: {
extend: {},
},
plugins: [],
};