-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
51 lines (47 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
// sm: "640px",
// sm2: "540px",
// md: "768px",
// // tab: "768px",
// lg: "1024px",
// xl: "1280px",
// "2xl": "1536px",
sm: '640px',
// => @media (min-width: 576px) { ... }
md: '1024px',
// => @media (min-width: 960px) { ... }
lg: '1280px'
// => @media (min-width: 1440px) { ... }
},
colors: {
// body background
white: '#F5F5F5',
white2: '#ffffff',
// button and typography
blue: '#0066FF',
// trending ,partner, simple effective
lightBlue: '#EBF5FF',
// nav
navblue: '#2128BD',
// news
lightwhite: '#DCDCDC2B',
// herotext
purple: '#130F49',
orange: '#FF5E00',
// black: "#0F1C49",
// dark: "#000000",
// slati: "#242A44",
slati: '#171717',
green: '#13ce66',
red: '#FF0000',
black: '#222222',
inputcolor: '#D4D8E666'
},
extend: {}
},
plugins: [require('daisyui')]
}