-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
39 lines (38 loc) · 1.01 KB
/
Copy pathtailwind.config.mjs
File metadata and controls
39 lines (38 loc) · 1.01 KB
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
import starlightPlugin from '@astrojs/starlight-tailwind';
import typographyPlugin from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
accent: {
DEFAULT: '#7C3AED',
50: '#F5F3FF',
100: '#EDE9FE',
200: '#DDD6FE',
300: '#C4B5FD',
400: '#A78BFA',
500: '#7C3AED',
600: '#6D28D9',
700: '#5B21B6',
800: '#4C1D95',
900: '#3B0764',
},
cyan: {
DEFAULT: '#38BDF8',
400: '#38BDF8',
500: '#0EA5E9',
},
surface: '#14141F',
background: '#0A0A0F',
},
fontFamily: {
heading: ['Alpha Lyrae', 'system-ui', 'sans-serif'],
body: ['Satoshi', 'system-ui', 'sans-serif'],
mono: ['Geist Mono', 'monospace'],
},
},
},
plugins: [starlightPlugin(), typographyPlugin()],
};