This repository has been archived by the owner on Jun 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (53 loc) · 1.52 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
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: {
content: [
'./src/**/*.js',
'./src/**/*.11ty.js',
'./src/**/*.njk',
'./src/**/*.html'
],
},
darkMode: 'media',
theme: {
fontWeight: {
normal: 400,
bold: 625, // not default of 700
black: 900,
},
colors: {
transparent: 'transparent',
white: '#ffffff',
black: '#000000',
blueGray: colors.blueGray,
gray: colors.gray,
red: colors.red,
orange: colors.orange,
amber: colors.amber,
yellow: colors.yellow,
green: colors.green,
teal: colors.teal,
sky: colors.sky,
blue: {
'50': '#e6f9ff',
'100': '#bbeeff',
'200': '#00aaff',
'300': '#0088ff',
'400': '#0033ff',
'500': '#0000ff',
'600': '#0000bb',
'700': '#0000aa',
'800': '#000088',
'900': '#000066',
},
},
fontFamily: {
'sans': ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', 'Noto Sans', 'Segoe UI', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'],
'serif': ['ui-serif', 'Georgia', 'Cambria', 'Times', 'Times New Roman', 'serif'],
'mono': ['ui-monospace', 'SFMono-Regular', 'SF Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace']
},
},
variants: {},
plugins: [], // if we add forms, do it here
}