-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
67 lines (67 loc) · 1.73 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
mobile: { max: '639px' },
tablet: { min: '640px', max: '1023px' },
md: { min: '768px' },
desktop: { min: '1024px', max: '1809px' },
lg: { min: '1024px', max: '1279px' },
xl: { min: '1280px', max: '1536px' },
'main-lg': { min: '1300px' },
'main-md': { min: '860px', max: '1300px' },
'main-sm': { max: '859px' },
'2xl': { min: '1536px', max: '1809px' },
largeDesktop: { min: '1810px' },
},
colors: {
main: '#00A1FF',
red: '#DF6B5A',
blue: '#364BB3',
lightBlue: '#1EA1F7',
grey: '#EAEAEA',
black: '#000000',
darkGrey: '#666666',
'main-light': '#E1EEE8',
white: '#ffffff',
middleGrey: '#BABABA',
lightGrey: '#EEEEEE',
},
textColor: {
main: '#00A1FF',
white: '#FFFFFF',
black: '#000000',
grey: '#C5CBCF',
red: '#DF6B5A',
blue: '#364BB3',
yellow: '#FFFF00',
lightBlue: '#1EA1F7',
darkGrey: '#666666',
green: '#4CAF50',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
margin: {
'1/20': '5%',
'1/7': '14%',
'1/6': '16%',
'1/5': '20%',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
},
},
},
plugins: [require('daisyui'), require('@tailwindcss/typography')],
daisyui: {
themes: ['cmyk'],
},
};