-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (40 loc) · 1007 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
colors: {
'h-blue': '#14181C',
'b-blue': '#1E252C',
'l-white': '#99AABB',
'p-white': '#def',
'h-grey': '#91A0AF',
// bg dropdown menu
'drop-grey': '#89a',
//text dropdown menu
'drop-black': '#2c3440',
//dropdown hover color
'dd-blue': '#667788',
//used on hover links on homepage
'hov-blue': '#40bcf4',
//used on borders on homepage
'b-grey': '#456',
//subheadings in home
'sh-grey': '#9ab',
// poster border color
'pb-grey': '#def',
'si-black': '#14181c',
//input field
'if-blue': '#2c3440',
//card blue
'c-blue': '#202830',
//signout poster hover,
'p-green': '#00e054',
'b-green': '#00c030',
'b-h-green': '#00B020',
// cast bg color
'c-grey': '#283038',
},
// extend: {},
},
plugins: [],
};