-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (39 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
base: {
color1: "white",
color2: "black"
},
primary: {
"accent-color1": "#00BF63",
"accent-color2": "#0b854a",
"dark-blue": "#374151",
"very-dark-blue": "hsl(208, 55%, 15%)",
"accent-color3": "#d40f0f"
},
custom: {
"dark-green": "#1A4942"
}
},
fontFamily: {
'overpass': ['Overpass', 'sans-serif'],
'barlow': ['Barlow', 'sans-serif'],
'rubik': ['Rubik', 'sans-serif'],
'open-sans': ['Open Sans', 'sans-serif'],
'montserrat': ['Montserrat', 'sans-serif'],
'playwrite': ['Playwrite MX', 'cursive']
},
},
backgroundImage: {
"intro-secton": "linear-gradient(to right bottom, #059669, #064e3b), url('/images/bg-pattern-intro-mobile.svg')",
"callout": "linear-gradient(225deg, #1a8253 27.55%, #1d935e 100%)",
"callout-circle-before": "linear-gradient(to bottom, #68e1be 0%, rgba(104, 225, 190, 0.1) 50%, rgba(104, 225, 190, 0) 100%)",
"callout-circle-after": "linear-gradient(to bottom, #68e1be 0%, rgba(104, 225, 190, 0.2) 100%)",
}
},
plugins: [],
}