-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (37 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
// colorscheme
bb: "#0317B0", // background blue
lb: "#5076FF", // light blue
tlb: "#B0C1FF", // text light blue
cb: "#1F4DF0", // calm blue
lw: "#E5EAFF", // light white
dib: "#4361EE", // dark ish blue
dp: "#2A2A68", // dark purple
dpr: "rgba(70, 71, 173, 0.3)", // dark purple
lp: "#9576EB", // light purple
mp: "#4647AD", // medium purple
slp: "#A6A6F2", // super light purple
},
fontFamily: {
"carter-one": ['"Carter One"', "sans-serif"],
cabin: ['"Cabin"', "sans-serif"],
"dm-sans": ['"DM Sans"', "sans-serif"],
poppins: ['"Poppins"', '"sans-serif"'],
},
},
},
plugins: [require("tailwind-scrollbar")],
variants: {
scrollbar: ["rounded"],
},
};
//// bg FFFEFE
// button bg + text 418CFD
// highlighted bg E9F2FF
// light gray F4F6F8
// darker gray AAADAF