forked from ixartz/Astro-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
65 lines (63 loc) · 1.54 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}',
'./node_modules/astro-boilerplate-components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
listStyleType: {
square: 'square',
},
fontFamily: {
rubik: ['Rubik Mono One', ...defaultTheme.fontFamily.sans],
sans: ['Cabin', ...defaultTheme.fontFamily.sans],
},
colors: {
benhammondblue: {
DEFAULT: '#336699',
50: '#A3C2E0',
100: '#94B8DB',
200: '#75A3D1',
300: '#578FC7',
400: '#3D7AB8',
500: '#336699',
600: '#254A6F',
700: '#172E45',
800: '#09121B',
900: '#000000',
},
benhammondyellow: {
DEFAULT: '#FFC600',
50: '#FFEFB8',
100: '#FFEAA3',
200: '#FFE17A',
300: '#FFD852',
400: '#FFCF29',
500: '#FFC600',
600: '#C79A00',
700: '#8F6F00',
800: '#574300',
900: '#1F1800',
},
benhammondgreen: {
DEFAULT: '#4DAA57',
50: '#C8E6CC',
100: '#BAE0BE',
200: '#9ED3A4',
300: '#82C689',
400: '#66BA6F',
500: '#4DAA57',
600: '#3C8343',
700: '#2A5D2F',
800: '#19361C',
900: '#071008',
},
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
],
};