-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (37 loc) · 1.06 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
const colors = require('tailwindcss/colors')
module.exports = {
content: ['src/web/webapp/**/*.peb', 'src/web/css/**/*.css', 'src/web/js/**/*.js'],
theme: {
container: {
center: true,
},
fontFamily: {
app: 'Inter',
title: 'Playfair Display',
mono: 'JetBrains Mono',
},
colors: {
amber: colors.amber,
blue: colors.blue,
emerald: colors.emerald,
gray: colors.gray,
green: colors.green,
lime: colors.lime,
orange: colors.orange,
red: colors.red,
sky: colors.sky,
slate: colors.slate,
stone: colors.stone,
teal: colors.teal,
yellow: colors.yellow,
copy: colors.slate['700'],
control: '#3B25D8',
'control-darkbg': '#14BDEB',
header: '#343A40',
white: '#FFFFFF',
label: colors.slate['500'],
page: colors.stone['100']
}
},
plugins: []
}