-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
60 lines (60 loc) · 1.52 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
/** @type {import('tailwindcss').Config} */
// tailwind.config.js
const plugin = require('tailwindcss/plugin');
module.exports = {
content: ["./admin/**/*.{php,html,js}"],
theme: {
fontSize: {
'xs': ['0.75rem', '1.125rem'], // 12px, 18px
'sm': ['0.875rem', '1.3125rem'], // 14px, 21px
'base': ['1rem', '1.5rem'], // 16px, 24px
'lg': ['1.125rem', '1.8rem'], // 18px, 28.8px
'19.2': ['1.2rem', '1.8rem'], // 19.2px, 28.8px
'xl': ['1.25rem', '1.875rem'], // 20px, 30px
'2xl': ['1.5rem', '2.25rem'], // 24px, 36px
'3xl': ['1.5rem', '2.4rem'], // 24px, 38.4px
'6xl': ['2rem', '3.2rem'], // 32px, 51.2px
'7xl': ['2rem', '3rem'], // 32px, 48px
'8xl': ['3rem', '3rem'], // 48px, 48px
'9xl': ['4rem', '6rem'], // 64px, 96px
},
colors: {
'primary':'#3017A1',
'secondary':'#664bd6',
'checked':'#0e65e9',
'black':'#000000',
'light-red':'#CA3521',
'hover-red':'#FFEDEB',
'grey':'#6D6D78',
'light':'#CFCFD3',
'light-grey':'#eeeeee',
'light-blue':'#0F62FE',
'royal-purple':'#654BD5',
'white':'#ffffff',
},
extend: {
fontFamily: {
poppins: ['Poppins'],
},
screens: {
'2xl': '1440px', // Custom breakpoint for 1440px
'3xl': '1600px', // Custom breakpoint for 1600px
'4xl': '1920px', // Custom breakpoint for 1920px
},
container: {
center:true,
padding: '2.5rem',
screens: {
sm: '100%',
md: '100%',
lg: '1024px',
xl: '1160px',
'2xl': '1280px',
'3xl': '1280px',
'4xl': '1280px',
},
},
},
},
plugins: [],
}