-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtailwind.config.js
56 lines (55 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
const { color } = require('@mui/system');
const { url } = require('inspector');
const colors= require("tailwindcss/colors")
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
backgroundImage: {
'landing-background': "url('/images/background.png')"
},
extend: {
colors: {
fabchat: { //NEW darkmint Theme
primary: '#191E29',
background: '#191E29',
hoverBackground: '#132D46',
hoverPrimary: 'rgba(1, 195, 141, 0.25)',
hoverSecondary: '#f5f5f5',
addServerBtn: 'rgba(1, 195, 141, 1)' , //added color for + button
text: '#fafafa',
white: '#ffffff',
black: '#000000',
inputBackground: 'linear-gradient(0deg, rgb(15, 33, 73), rgba(15, 33, 73, 1))',
topLeft: '#2f3136',
subtext: 'rgba(1, 195, 141, 1)',
},
fabchatOriginal: { //Original Blue Theme
primary: 'rgb(33, 72, 220)',
background: 'rgba(1, 25, 54, 1)',
hoverBackground: '#0A214D',
hoverPrimary: '#2B6CB0',
hoverSecondary: '#f5f5f5',
text: '#fafafa',
white: '#ffffff',
black: '#000000',
inputBackground: 'linear-gradient(0deg, rgb(15, 33, 73), rgba(15, 33, 73, 1))',
topLeft: '#2f3136',
subtext: 'rgba(172, 181, 199, 1)',
}
},
animation: {
'loading-spin': 'spin 2s ease-in-out infinite',
},
fontFamily: {
frederikaone: ["FrederikaOne", "sans-serif"],
Londrina: "'Londrina Solid', cursive" ,
LondrinaThin: "'Londrina Thin', cursive",
}
},
},
plugins: [require('tailwind-scrollbar-hide')],
}