-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
87 lines (84 loc) · 2.52 KB
/
tailwind.config.ts
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
83
84
85
86
87
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
/**
* Primary color
*/
primary: "#213C33",
/**
* Primary color when focused
*/
"primary-focus": "#1B312A",
/**
* Foreground content color to use on primary color
*/
"primary-content": "#FFF",
/**
* Secondary color
*/
secondary: "#EF767A",
/**
* Secondary color when focused
*/
"secondary-focus": "#E8363C",
/**
* Foreground content color to use on secondary color
*/
"secondary-content": "#200405",
/**
* Base color of page, used for blank backgrounds
*/
"base-100": "#FFF",
/**
* Base color, a little darker
*/
"base-200": "#EAEAEA",
/**
* Base color, even darker
*/
"base-300": "#999",
/**
* Foreground content color to use on base color
*/
"base-content": "#000",
/**
* Error color
*/
error: "#ef4444",
/**
* Error color when focused
*/
"error-focus": "#dc2626",
/**
* Foreground content color to use on error color
*/
"error-content": "#450a0a",
},
backgroundImage: {
"landing-first-section":
"url('/img/background-images/background-landing-page-first-section.jpg')",
footer: "url('/img/background-images/background-footer.svg')",
"razvigorci-hero": "url('/img/background-images/background-razvigorci-hero.png')",
"group-left": "url('/img/razvigorci/Group-left.png')",
"group-right": "url('/img/razvigorci/Group-right.png')",
"programi-hero": "url('/img/background-images/programi-hero.png')",
"programi-up-right": "url('/img/background-images/Group 282.png')",
"izvidnicki-centri-hero": "url('/img/background-images/izvidnicki-centri-hero.png')",
"izvidnicki-centri-map-left": "url('/img/background-images/Group 435 (1).png')",
"izvidnicki-centri-map-right": "url('/img/background-images/Group 435.png')",
"about-hero": "url('/img/background-images/about-hero.png')",
},
height: {
'120': '120px'
},
},
},
plugins: [],
};