-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
55 lines (54 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
Inter: ["Inter", "sans-serif"],
},
colors: {
custom: '#FEFBFF',
specialgrey: '#1C1C1C',
greyuse: '#777777',
gradbluedark: '#213d84',
gradbluelight: '#9cacd5',
bluebg: '#1B2945',
gradcyandark: '#75fbfd',
gradgreylight: '#a8aebb',
darkgreybg: '#2C3A47',
gradgreendark: 'rgba(79,151,120,1)',
gradgreenlight: 'rgba(213,244,190,1)',
darkgreenbg: '#1F322B',
graddarkbluedark: '#a0b6f5',
gradwhitelight: '#01175D',
darkbluebg: '#01175D',
cardimgshadow: '#0D2368',
discordbg: '#5865F2',
githubbg: '#171515',
explorebg: '#3660F4',
browsebg: '#1C1C1C',
teambg1: '#51C5B2',
teambg2: '#FF4A85',
teambg3: '#FFEC00'
},
backgroundImage: {
'gradient-45': 'linear-gradient(45deg, var(--tw-gradient-stops))',
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))'
},
backgroundSize:{
'200%':'200%',
'100%': '100%',
},
spacing: {
'50':'12.5rem'
},
backgroundColor: {
clickme: 'rgba(165, 35, 170, 1)'
},
},
},
plugins: [],
}