forked from ocaml/ocaml.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (60 loc) · 1.49 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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: ["**/*.eml"],
darkMode: 'class',
theme: {
extend: {
maxWidth: {
'8xl': '90rem',
},
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
},
outline: {
primary: "2px solid #EE6A1A"
},
colors: {
primary: {
800: "#CD4E00",
700: "#DC5402",
600: "#EE6A1A",
300: "rgba(238, 106, 26, 0.48)",
100: "rgba(238, 106, 26, 0.1)",
},
background: {
default: "#FAF8F3",
},
body: {
700: "#0A0C11",
600: "#1A202C",
400: "rgba(26, 32, 44, 0.64);",
100: "rgba(26, 32, 44, 0.16)",
},
code: {
blue: "rgba(86, 156, 214, 1)",
yellow: "rgba(220, 220, 170, 1)",
comment: "rgba(255, 255, 255, 0.6)",
red: "rgba(252, 129, 129, 1)",
background: "rgba(30, 30, 30, 1)",
},
sucess: {
100: "rgba(142, 233, 60, 0.1)",
600: "rgba(142, 233, 60, 1)",
},
global: {
default: "rgba(250, 248, 243, 1)",
},
divider: {
8: "rgba(26, 32, 44, 0.08)",
12: "rgba(26, 32, 44, 0.12)",
16: "rgba(26, 32, 44, 0.16)",
},
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};