-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
colors: {
darkBlue: "#110057",
lightBlue: "#649cff",
white: "#ffffff",
orange: "#fa8804",
skyBlue: "#669bff",
navyBlue: '#4a00e2',
black: "#000000",
purple: "#4a00e2",
rubyRed: "#e12502",
peachPink: '#fcb7a4',
},
extend: {
fontFamily: {
rector: ['Rector Sans', 'sans-serif'],
abc: ['ABC Social', 'cursive'],
},
screens: {
'h-sm': { 'raw': '(min-height: 640px)' },
'h-md': { 'raw': '(min-height: 768px)' },
'h-lg': { 'raw': '(min-height: 1024px)' },
'h-xl': { 'raw': '(min-height: 1280px)' },
'h-2xl': { 'raw': '(min-height: 1536px)' },
'h-3xl': { 'raw': '(min-height: 1792px)' },
'3xl': { 'raw': '(min-width: 1792px)' },
'4xl': { 'raw': '(min-width: 2048px)' },
'5xl': { 'raw': '(min-width: 2304px)' },
'6xl': { 'raw': '(min-width: 2816px)' },
}
},
},
plugins: [],
};