-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.23 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
/** @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: {
extend: {
opacity: {
85: '.85',
},
colors: {
mainGrey: {
100: '#6B6B6B',
},
mainGrey2: {
100: '#E2E2E2',
},
textBlack: {
100: '#242424',
},
infoBg: {
100: '#E7E7E1',
},
ticker: {
100: '#FDEA1F',
},
bgBlack: {
100: '#2C2C2C',
},
},
},
screens: {
landscapePhone: {
raw: `only screen and (orientation: landscape) and (max-width: 1024px) and (max-height: 550px)`,
},
laptop: {
raw: `only screen and (max-height: 859px) and (min-width: 1400px) `,
},
landscapePad: {
raw: `only screen and (min-width: 1024px) and (max-width: 1370px) and (orientation: landscape)`,
},
portraitPad: {
raw: `only screen and (max-width: 1024px) and (orientation: portrait)`,
},
portraitPh: {
raw: `only screen and (max-width: 550px)`,
},
},
},
plugins: [],
}