-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 942 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 942 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
36
37
38
39
40
41
42
43
module.exports = {
content: [
"./components/**/*.js",
"./content/**/*.{json,md}",
"./pages/**/*.js",
],
theme: {
colors: {
blue: {
light: "#7FA8CC",
DEFAULT: "#6987a1",
},
current: "currentColor",
gray: {
lightest: "#F8FAFC",
lighter: "#EBEBEB",
light: "#BEBEBE",
DEFAULT: "#707070",
dark: "#333333",
darker: "#222222",
},
green: {
light: "#A1D66A",
DEFAULT: "#76B833",
},
orange: {
dark: "#E5AC52",
},
white: "#FFFFFF",
},
extend: {
backgroundImage: {
"career-teaser": "url('/images/teaser/career-teaser.jpg')",
"application-teaser": "url('/images/teaser/application-teaser.jpg')",
},
},
},
plugins: [
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};