-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
63 lines (60 loc) · 1.77 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
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
// screens: {
// 'cus-lg': '1150px'
// },
fontFamily: {
body: ['finlandica-font-normal', ...defaultTheme.fontFamily.sans],
header: ['finlandica-font-normal', ...defaultTheme.fontFamily.serif],
},
extend: {
fontFamily: {
odibee: ["Odibee Sans", "cursive"],
Urbansit: ['Urbansit', 'sans-serif']
},
boxShadow: {
'card': '0px 0px 10px 1px rgba(173, 26, 175, 0.25)',
'start-btn': '0px 20px 40px #0779FF',
'hover-start-btn': '0px 10px 40px #0779FF',
'smooth': 'inset 0px 0px 30px 30px #101A2D',
'subscribe': '0px 20px 40px 0px #1A31FD80',
'auth-box': '0px 0px 20px 4px #11111D',
'chat-box': '-6px 6px 8px -2px #6C6B6Baa',
'card-upload': '0px 0px 8px 2px #a6a1a3',
'card-upload-black': '0px 0px 8px 2px #000000'
},
backgroundImage: {
"card": "url('/Card.png')"
}
},
colors: {
"cus-pink": "#ff1d46",
"main-bg": "#000C49",
"bg-secondary": "#130B22",
"bg-purple": '#0A0219',
"main-blue": "#1845F3",
"card-bg": '#010518',
"custom-orange": "#D84C10",
"egg-plant": "#232627",
'nav-grey': "#404551",
"dark-grey": '#96999E',
"custom-purple": '#8E55EA',
"custom-blue": '#3E90F0',
"custom-green": '#52BA69',
"dodger-purple": "#8C6584",
"custom-sky": "#01dcff",
"cus-yellow": '#ff9e0c'
},
},
plugins: [
require('@tailwindcss/typography'),
require('flowbite/plugin')
]
}