-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (75 loc) · 1.76 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
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
navbarBg: '#39377c',
navSpecial: '#41E6A6',
white: '#FFFFFF',
formInput: '#28857acc',
inputColor: '#D9D9D9',
inputBg: '#25726F',
inputBorder: '#2C804B',
buttonBg: '#2c804b42',
footerRule: '#D9D9D9',
footerBorder: '#9f9be880',
blogCardBg: '#11203899',
black: '#000000',
blogText: '#47515E',
cardBg: '#19244499',
imgBorder: '#41e6a699',
},
fontFamily: {
'navLogo': ["'Goldman'", 'cursive'],
'landingText': ["'Poor Story'", 'cursive'],
'linksText': ["'Roboto'", 'sans-serif'],
'main': ["'Poppins'", 'sans-serif'],
'blog': ["'Lato'", 'sans-serif'],
'exploreBlogText': ["'Plus Jakarta Sans'", 'sans-serif'],
'expBlogContent': ["'Inter'", 'sans-serif']
},
screens: {
'xlg': '950px',
...defaultTheme.screens,
},
extend: {
borderRadius: {
'extralarge': '12rem'
},
visibility: ["group-hover"],
height: {
'med': '768px',
},
width: {
'320': '320px',
'424': '424px',
'1024': '1024px',
'1440': '1440px',
'2560': '2560px',
'1280': '1364px',
'768': '768px',
},
height: {
'he': '1440px',
},
fontSize: {
'tiny': '.50rem',
},
fontFamily: {
'pop': ['Poppins', 'sans-serif'],
},
screens: {
'2k': '2000px',
'1k': '1440px',
'tab': '768px',
'k': '1024px',
'mob': '425px',
'mob-sm': '320px',
},
},
},
plugins: [],
}