-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
44 lines (40 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {
colors: {
primary: "#183efa",
secondary: "#ededed",
conferehele: "#E7DCCD",
blockhele: "rgba(230,235,255,255)",
navtrans: "rgba(24, 62, 250, 0.6)",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
fblue: "#183EFAF0",
colblue: '#183EFA24',
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
},
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1080px",
lg: "1200px",
xl: "1700px",
},
backgroundImage: {
"hero-pattern": "url('/src/assets/Slide1.png')",
"contact-pattern": "url('/src/assets/A_taustagraafika.jpeg')",
"tgraafika": "url('src/assets/graafika2.png')",
"sise-bg" : "url('src/assets/Siselahendused-aur.jpg')",
"surv-bg" : "url('src/assets/valilahendused.jpg')",
"graafika" : "url('src/assets/graafika.png')",
},
},
plugins: [],
});