-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
41 lines (39 loc) · 1017 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
"./content/**/*.{md,mdx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
serif: ['Bitter', 'serif'],
mono: ['Roboto Mono', 'mono'],
},
colors: {
'light': '#f3f3f3',
'lighter': '#FFFFFF',
'dark': '#343c4c',
'darker': '#212733',
'accent': '#12c5ca',
'accentgrad': '#0A7679',
'grey': '#ABABAB',
'orangina': '#ffa74c',
'rosalina': '#f86077',
'violina': '#b16dea',
'vibrant-blue': '#0456f9',
'mineShaft': '#363636',
'seashell': '#F1F1F1',
'wafer': '#D8C9BF',
'silver': '#ABABAB',
'rawSienna': '#CF8035',
'iroko': '#493626',
},
},
},
plugins: [require("@tailwindcss/typography")],
}