-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 811 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (30 loc) · 811 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
mullish: ["Mulish", "sans-serif"],
josefin: ["Josefin Sans", "sans-serif"],
},
backgroundColor: ['group-hover'],
gradientColorStops: ['hover', 'group-hover'],
colors: {
deepBlue: "#02042a",
primary: "#050816",
navbar: "#2c114f",
secondary: "#aaa6c3",
tertiary: "#151030",
lightBlue: "#2b84ea",
lightBlue300: "#4b94ed",
lightBlue500: "#0b72e7",
greenLight: "#61cea6",
grayText: "#818597",
lightGray: "#e2e2e2",
grayBlue: "#344a6c",
deepBlueHead: "#162f56",
gray2: "#525a76",
},},
},
plugins: [],
}