-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (67 loc) · 1.82 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontSize: {
small: '0.7rem',
medium: '1rem',
mid: '1.5rem',
title: '2rem',
titleSoon2 : '2.5rem',
titleSoon: '4rem',
TitleHeader : '3.75rem'
},
fontWeight: {
titleWeight: '500',
700: '700',
},
colors: {
"primary-black": "#1A1A1A",
"secondary-black": "#212121",
"primary-gray": "#4D4D4D",
"secondary-gray": "#D8D8D8",
"tertiary-gray": "#979797",
"accent-red": "#D94141",
},
fontFamily: {
arimo: ["Arimo", "sans-serif"],
playFair: ["Playfair Display", "serif"],
openSans: ["Open Sans", "sans-serif"],
playFairItalic: ["Playfair Display Italic", "serif"],
},
backgroundImage: {
'defaultRaz': "url('/src/assets/images/raz-bg.webp')",
'home-bg': "url('/src/assets/images/homepage-bg.webp')",
'advert-bg': "url('/src/assets/images/ad-bg.webp')",
'timeline-bg': "url('/src/assets/icons/truck-icon.svg')"
},
screens: {
'handphone': {'min' : '412px', 'max' : '767px'},
'tablet': {'min' : '768px', 'max' : '1023px'},
'laptop': {'min' : '1024px', 'max' : '1468px'},
// 'desktop' : {'min' : '1369px', 'max' : '1768px'}
},
width: {
'image': '15px',
'image1.5': '20px',
'image2': '25px',
'50': '50px',
'textimage': '100px',
'ProfileImage': '100px',
'150': '150px',
},
spacing: {
'wFormProfile': '5vw',
'hFormProfile': '1vh',
},
},
},
variants: {
display: ["group-hover"],
},
plugins: [require("daisyui")],
daisyui: {
themes: [],
},
};