-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (53 loc) · 1.48 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
"light-bg": "#F6F7FC",
"dark-bg": "#060916",
"nav-blue": "#141B3A",
"nav-white": "#F6F7FC",
"facebook-blue": "#1877F2",
"twitter-blue": "#1DA1F2",
"linkedin-blue": "#2867B2",
"h1-grey": "#C1CCEA",
"primary-1": "#DAE0F2",
fellow: "#EDFEFE",
"dark-fellow": "#0E1426",
"primary-9": "#172240",
blue: "#4463BE",
"dark-blue": "#233360",
"dark-white": "#E4E6EC",
"dark-grey": "#EEF2FF",
"dark-blue": "#101218",
"blue-main": "#4665C0",
"weird-green": "#80EDEF",
"light-blue": "#A3B2E0",
"darker-blue": "#5772C5",
"darker-grey": "#C5CCEB",
"placeholder-grey": "#A5A6A8",
"qala-secondary": "#00DBDF",
"dark-blue-main": "#27315D",
"primary-3": "#A2B2DF",
"primary-7": "#2F4380",
brown: "#231E1B",
fellow_hover: "#DDE5FF",
skill_blue: "#3A54A0",
"interview-blue": "#233260",
"grey-border": "#E7ECFD",
"banner-blue": "#657FCA",
},
fontFamily: {
Gilroy: ["Gilroy"],
sans: ["Open Sans", ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
};