-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.cjs
82 lines (82 loc) · 3.39 KB
/
tailwind.config.cjs
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
73
74
75
76
77
78
79
80
81
82
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
transitionProperty: {
height: "height",
},
opacity: {
15: ".15",
},
backgroundImage: {
"illustration-1": "url('/tolocar_illustration_1.svg')",
"illustration-2": "url('/tolocar_illustration_2.svg')",
"illustration-2-alpha": "url('/tolocar_illustration_2_alpha.svg')",
"illustration-2-dark": "url('/tolocar_illustration_2_dark.svg')",
"illustration-3": "url('/tolocar_illustration_3.svg')",
"illustration-3-dark": "url('/tolocar_illustration_3_dark.svg')",
"illustration-3-alpha": "url('/tolocar_illustration_3_alpha.svg')",
"illustration-4-wide": "url('/tolocar_illustration_4_wide.svg')",
"illustration-wide": "url('/tolocar_illustration_wide.svg')",
"illustration-1-dark": "url('/tolocar_illustration_1_dark.svg')",
link: "url('/link.svg')",
"community-banner-1-lg":
"linear-gradient(90.03deg, rgba(0, 0, 0, 0.5) 35.42%, rgba(0, 0, 0, 0) 56.02%), url(/images/metal-structure.jpg)",
"community-banner-2-lg":
"linear-gradient(90.03deg, rgba(0, 0, 0, 0.5) 35.42%, rgba(0, 0, 0, 0) 56.02%), url(/images/map-with-pins.jpg)",
"community-banner-3-lg":
"linear-gradient(90.03deg, rgba(0, 0, 0, 0.5) 35.42%, rgba(0, 0, 0, 0) 56.02%), url(/images/classroom.jpg)",
"community-banner-1-sm":
"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.301) 30.5%, rgba(0, 0, 0, 0.7) 66.96%), url(/images/metal-structure.jpg)",
"community-banner-2-sm":
"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.301) 30.5%, rgba(0, 0, 0, 0.7) 66.96%), url(/images/map-with-pins.jpg)",
"community-banner-3-sm":
"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.301) 30.5%, rgba(0, 0, 0, 0.7) 66.96%), url(/images/classroom.jpg)",
"community-messages":
"linear-gradient(-6.5deg, rgba(0, 150, 100, 1) 0%, rgba(0, 150, 100, 0) 31.54%, rgba(0, 150, 100, 0) 66.78%, rgba(0, 150, 100, 1) 100%), url(/community_messages.svg)",
},
typography: {
DEFAULT: {
css: {
"blockquote p:first-of-type::before": { content: "none" },
"blockquote p:first-of-type::after": { content: "none" },
},
},
},
},
colors: {
transparent: "transparent",
current: "currentColor",
white: "#ffffff",
black: "#000000",
"tolo-black": "#111111",
"tolo-green": "#009664",
"tolo-dark-green": "#047C54",
"tolo-darker-green": "#056746",
neutral: {
50: "#F5F5F5",
100: "#EEEEEE",
200: "#DCDCDC",
300: "#B8B8B8",
400: "#8F8F8F",
500: "#707070",
600: "#575757",
700: "#343434",
800: "#212121",
900: "#131313",
},
},
fontFamily: {
aktiv: ["aktiv-grotesk-extended", "Arial", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
content: {
"plus-green": 'url("/images/award/plus-green.svg")',
"minus-green": 'url("/images/award/minus-green.svg")',
"plus-white": 'url("/images/award/plus-white.svg")',
"minus-white": 'url("/images/award/minus-white.svg")',
},
},
plugins: [require("@tailwindcss/typography")],
};