-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
43 lines (40 loc) · 942 Bytes
/
tailwind.config.mjs
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
import starlightPlugin from '@astrojs/starlight-tailwind';
// useful tools to generate colors palettes
// https://www.tailwindcolorpalette.com/
// Generated color palettes
// https://starlight.astro.build/guides/css-and-tailwind/#color-theme-editor
const accent = {
200: '#abd79f',
500: '#37AD00',
600: '#1c5800',
700: '#174700',
800: '#103300',
900: '#113d00',
950: '#0a2c00'
};
const gray = {
100: '#f5f6f5',
200: '#eceeec',
300: '#c0c3c0',
400: '#888d87',
500: '#555954',
700: '#363935',
800: '#242823',
900: '#171917'
};
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Poppins', 'sans-serif']
// serif: ['serif']
},
colors: { accent, gray },
outlineColor: accent,
ringColor: accent
}
},
plugins: [starlightPlugin()]
};