-
Notifications
You must be signed in to change notification settings - Fork 23
/
tailwind.config.js
46 lines (46 loc) · 1.41 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
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
"./HOC/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
blau: "#0033A3",
blau2: "#003CBE",
blau3: "#0050D5",
blau4: "#0065EB",
blau5: "#007CFF",
blau6: "#1A8CFF",
blau7: "#47A1FF",
blau8: "#67B3FF",
blau9: "#8BCBFF",
blau10: "#0065EB",
blau11: "#E9F7FF",
gelb: "#FCBB00",
gelb2: "#FFDA00",
gelb3: "#FFF575",
rot: "#EB5A68",
neuter: "#2A3039",
},
extend: {
fontFamily: {
AvenirNextLTW02: ["AvenirNextLTW02-Regular", "sans-serif"],
AvenirNextLTitalic: ["AvenirNextLTW02-It", "sans-serif"],
AvenirNextLTDemi: ["AvenirNextLTW02-Demi", "sans-serif"],
AvenirNextLTBold: ["AvenirNextLTW02-Bold", "sans-serif"],
},
},
},
plugins: [],
};