This repository was archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (51 loc) · 1.56 KB
/
tailwind.config.js
File metadata and controls
53 lines (51 loc) · 1.56 KB
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
const colors = require('tailwindcss/colors')
const defaultFontFamily = {
'sans': ['ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
'serif': ['ui-serif', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif'],
'mono': ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace']
}
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
colors: {
'stark-white': {
DEFAULT: '#E8D8C3',
'50': '#FFFFFF',
'100': '#FCFAF8',
'200': '#F9F5F0',
'300': '#F4ECE2',
'400': '#EADDCC',
'500': '#E8D8C3',
'600': '#D8BE9A',
'700': '#C9A372',
'800': '#B98949',
'900': '#926B38'
},
'cedar': {
DEFAULT: '#3C1217',
'50': '#C64050',
'100': '#BA3847',
'200': '#9A2E3B',
'300': '#7B252F',
'400': '#5B1B23',
'500': '#3C1217',
'600': '#2B0D11',
'700': '#1F090C',
'800': '#180709',
'900': '#000000'
},
...colors
},
fontFamily: {
'sans': [...defaultFontFamily['sans']],
'serif': ['Libre Baskerville', ...defaultFontFamily['serif']],
'body': ['EB Garamond', ...defaultFontFamily['sans']],
'mono': [...defaultFontFamily['mono']],
}
},
plugins: [],
}