-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
71 lines (69 loc) · 2.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
import typography from "@tailwindcss/typography";
export default {
content: [
'./src/**/*.{html,md,liquid,erb,serb,rb}',
'./frontend/javascript/**/*.js',
],
theme: {
container: {
center: true,
padding: '1rem',
},
fontFamily: {
// https://github.com/system-fonts/modern-font-stacks
geohumanist: ['Avenir', 'Montserrat', 'Corbel', 'URW Gothic', 'source-sans-pro', 'sans-serif'],
//systemui: ['system-ui', 'sans-serif'],
//transitional: ['Charter', 'Bitstream Charter', 'Sitka Text', 'Cambria', 'serif'],
//oldstyle: ['Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', 'P052', 'serif'],
//humanist: ['Seravek', 'Gill Sans Nova', 'Ubuntu', 'Calibri', 'DejaVu Sans', 'source-sans-pro', 'sans-serif'],
//classhuman: ['Optima', 'Candara', 'Noto Sans', 'source-sans-pro', 'sans-serif'],
//neogrote: ['Inter', 'Roboto', 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', 'Arial', 'sans-serif'],
//monoslab: ['Nimbus Mono PS', 'Courier New', 'monospace'],
//monocode: ['ui-monospace', 'Cascadia Code', 'Source Code Pro', 'Menlo', 'Consolas', 'DejaVu Sans Mono', 'monospace'],
//industrial: ['Bahnschrift', 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', 'sans-serif-condensed', 'sans-serif'],
//roundsans: ['ui-rounded', 'Hiragino Maru Gothic ProN', 'Quicksand', 'Comfortaa', 'Manjari', 'Arial Rounded MT', 'Arial Rounded MT Bold', 'Calibri', 'source-sans-pro', 'sans-serif'],
//slabserif: ['Rockwell', 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', 'serif'],
//antique: ['Superclarendon', 'Bookman Old Style', 'URW Bookman', 'URW Bookman L', 'Georgia Pro', 'Georgia', 'serif'],
//didone: ['Didot', 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', 'P052', 'Sylfaen', 'serif'],
//handwritten: ['Segoe Print', 'Bradley Hand', 'Chilanka', 'TSCu_Comic', 'casual', 'cursive'],
},
extend: {
borderRadius: {
'xl': '1.5rem'
},
colors: {
// https://uicolors.app/create #d83909
'grenadier': {
'50': '#fff6ed',
'100': '#ffead4',
'200': '#ffd2a8',
'300': '#ffb271',
'400': '#ff8638',
'500': '#fe6411',
'600': '#ef4907',
'700': '#d83909',
'800': '#9d2b0f',
'900': '#7e2510',
'950': '#440f06',
},
},
typography: (theme) => ({
zinc: {
css: {
'--tw-prose-bullets': '#d83909'
}
},
DEFAULT: {
css: {
'code::before': { content: 'none' },
'code::after': { content: 'none' },
}
}
}),
},
},
plugins: [
typography
],
}