forked from ArnNied/sermo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 885 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: "Poppins, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif",
},
colors: {
primary: {
base: "#03DD33",
dark: "#03C92E",
darker: "#03B529",
},
secondary: {
base: "#1D94AC",
dark: "#1B879D",
darker: "#18788C",
},
tertiary: {
base: "#0F0F5A",
dark: "#0F0F57",
darker: "#0C0C46",
},
quaternary: {
base: "#31518B",
dark: "#304F88",
darker: "#2A4679",
},
},
},
},
plugins: [],
}