-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
72 lines (71 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./integreat_compass/cms/templates/**/*.html", "./integreat_compass/static/src/js/**/*.{js,ts,tsx}"],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.slate,
red: colors.red,
orange: colors.orange,
yellow: colors.yellow,
green: colors.green,
blue: colors.blue,
violet: colors.violet,
primary: "#FBDA16",
secondary: "#334253",
tertiary: "#E9E9E9",
},
extend: {
colors: {
water: {
50: "#fefeff",
100: "#fcfdff",
200: "#f8fafe",
300: "#f4f7fe",
400: "#ecf1fd",
500: "#e4ebfc",
600: "#cdd4e3",
700: "#abb0bd",
800: "#898d97",
900: "#70737b",
},
background: {
50: "#fafafa",
900: "#0a0011ab",
},
},
backgroundImage: {
"integreat-icon": "url('../images/favicon.svg')",
"integreat-logo": "url('../images/logo-integreat-compass.svg')",
},
fontFamily: {
"default": ["Roboto", "Raleway", "Lateef", "Noto Sans SC", "sans-serif", "Noto Sans Ethiopic"],
"content": ["Open Sans", "sans-serif"],
"content-rtl": ["Lateef", "sans-serif"],
"content-sc": ["Noto Sans SC", "sans-serif"],
"content-am": ["Noto Sans Ethiopic", "sans-serif"],
},
maxHeight: {
15: "3.75rem",
116: "29rem",
160: "40rem",
},
gridTemplateColumns: {
gallery: "repeat(auto-fill, minmax(180px, 1fr))",
},
width: {
120: "30rem",
136: "34rem",
160: "40rem",
},
screens: {
"3xl": "1700px",
"4xl": "2100px",
},
},
},
plugins: [require("@tailwindcss/forms")],
};