forked from pixelbakery/pixelbakery-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
99 lines (97 loc) · 2.19 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
transparent: 'transparent',
cream: 'rgb(239, 232, 242)', //#EFE8F2},
white: '#ffffff',
egg: 'rgb(243, 244, 246)',
blue: {
light: 'rgb(204, 238, 255)',
DEFAULT: 'rgb(56, 204, 255)',
dark: 'rgb(0, 81, 116)',
},
peach: {
light: '#FFD9D3',
DEFAULT: 'rgb(255, 94, 100)',
},
yellow: 'rgb(250, 216, 105)',
pink: {
extralight: '#FFEFFF',
light: 'rgb(241, 231, 243)',
DEFAULT: 'rgb(255, 163, 204)', //#F2A8CA
},
wine: {
100: 'rgb(210, 207, 218)',
200: 'rgb(182, 180, 190)',
300: 'rgb(155, 153, 163)',
400: 'rgb(129, 127, 137)',
500: 'rgb(104, 102, 111)',
DEFAULT: 'rgb(80, 78, 87)', //#504E57
},
},
stroke: (theme) => theme('colors'),
fill: (theme) => theme('colors'),
fill: {
current: 'currentColor',
none: 'none',
},
fontFamily: {
pbheading: 'Gilroy, Poppins, sans-serif',
body: 'Poppins, sans-serif',
},
extend: {
fontSize: {
'18xl': '18rem',
'20xl': '20rem',
},
margin: {
100: '100rem',
},
aspectRatio: {
'4/3': '4 / 3',
'3/4': '3/4',
'22/17': '22/17',
'1/1': '1/1',
'1/2': '1/2',
'16/9': '16/9',
},
scale: {
25: '.25',
97: '.97',
98: '.98',
99: '.99',
101: '1.01',
102: '1.02',
103: '1.03',
175: '1.75',
200: '2.00',
},
strokeWidth: {
3: '3px',
4: '4px',
5: '5px',
6: '6px',
10: '10px',
},
borderWidth: {
5: '5px',
6: '6px',
},
},
},
variants: {
extend: {
stroke: ['hover', 'focus'],
fill: ['hover', 'focus'],
skew: ['group-hover', 'active'],
scale: ['group-hover', 'active'],
backgroundColor: ['active'],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
],
}