-
Notifications
You must be signed in to change notification settings - Fork 12
/
tailwind.config.js
70 lines (69 loc) · 1.75 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
purge: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./themes/**/*.{js,ts,jsx,tsx}',
],
darkMode: false, // or 'media' or 'class'
corePlugins: {
blur: false,
},
theme: {
extend: {
fontSize: {
'c-40': ['40px', '49px'],
},
boxShadow: {
'c-sm': '0px 8px 28px rgba(0, 0, 0, 0.05)',
'c-xsm': '0px 1px 2px rgba(0, 0, 0, 0.24)',
'c-md': '0px 24px 45px rgba(58, 76, 130, 0.08)',
},
transitionProperty: {
width: 'width',
},
gridTemplateColumns: {
listing_card_5: 'repeat(5, minmax(0, 290px))',
listing_card_4: 'repeat(4, minmax(0, 290px))',
listing_card_3: 'repeat(3, minmax(0, 290px))',
listing_card_2: 'repeat(2, minmax(0, 290px))',
listing_card_sm_2: 'repeat(2, minmax(0, 200px))',
},
colors: {
primary: 'var( --primary_color)',
secondary: 'var( --secondary_color)',
footer: 'var( --footer_color)',
primary_light: '#DFFBF4',
default_gray: '#959393',
},
borderRadius: {
'c-48': '48px',
},
outline: {
blue: '2px solid var( --primary_color)',
},
fontFamily: {
'Inter-var':"Inter"
}
},
screens: {
xs: '540px',
ms: '450px',
xxs: '350px',
'c-lg': '1100px',
'c-md': '824px',
...defaultTheme.screens,
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('tailwind-scrollbar'),
],
};