-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 905 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
38
39
40
41
42
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./src/**/*.md",
"./src/**/*.liquid",
"./src/**/*.njk",
"./src/**/*.html",
"./.eleventy.js",
],
theme: {
extend: {
screens: {
"2-xl": "1700px",
},
colors: {
purple_heart: {
DEFAULT: "#4E14B3",
},
salmon: {
DEFAULT: "#FC9BA6",
50: "#fff1f2",
100: "#ffe4e6",
200: "#fecdd3",
300: "#fc9ba6",
400: "#fa7285",
500: "#f3405d",
600: "#df1f47",
700: "#bd133b",
800: "#9e1339",
900: "#871436",
950: "#4b0618",
},
},
fontFamily: {
sans: ["Overpass", ...defaultTheme.fontFamily.sans],
tropic: ["Tropi Land", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};