-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.mjs
74 lines (71 loc) · 1.52 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import starlightPlugin from '@astrojs/starlight-tailwind';
const accent = {
200: '#c3c4f1',
600: '#6453d2',
900: '#2e295f',
950: '#211f41',
};
const gray = {
100: '#f5f5fd',
200: '#ececfb',
300: '#bfc0d2',
400: '#8788aa',
500: '#545474',
700: '#353452',
800: '#24233f',
900: '#171724',
};
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
sans: ['Aeonik', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
colors: {
// Starlight colors
accent,
gray,
// ---
tameplum: {
20: '#F6F6FF',
50: '#EFEFF9',
100: '#E2E2F0',
600: '#757387',
800: '#515061',
},
grayscale: {
100: '#000000',
80: '#333333',
60: '#808080',
20: '#EBEBED',
0: '#FFF',
},
special: {
stroke: '#2a0a6629',
},
gradient: {
purple: '#C464FF',
'purple-dark': '#A91EFF',
blue: '#1D72F0',
'blue-dark': '#0058DD',
},
},
keyframes: {
'scroll-bg-y': {
'0%': { backgroundPosition: 'center 0rem' },
'100%': { backgroundPosition: 'center 2rem' },
},
},
animation: {
'scroll-bg-y-slow': 'scroll-bg-y 3s linear infinite',
},
},
screens: {
sm: '601px',
md: '1025px',
lg: '1441px',
},
},
plugins: [starlightPlugin()],
};