-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.22 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
import * as defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
rosePineMoon: {
base: '#232136',
surface: '#2a273f',
overlay: '#393552',
muted: '#6e6a86',
subtle: '#908caa',
text: '#e0def4',
love: '#eb6f92',
gold: '#f6c177',
rose: '#ea9a97',
pine: '#3e8fb0',
foam: '#9ccfd8',
iris: '#c4a7e7',
highlightLow: '#2a283e',
highlightMed: '#44415a',
highlightHigh: '#56526e'
},
rosePineDawn: {
base: '#faf4ed',
surface: '#fffaf3',
overlay: '#f2e9e1',
muted: '#9893a5',
subtle: '#797593',
text: '#575279',
love: '#b4637a',
gold: '#ea9d34',
rose: '#d7827e',
pine: '#286983',
foam: '#56949f',
iris: '#907aa9',
highlightLow: '#f4ede8',
highlightMed: '#dfdad9',
highlightHigh: '#cecacd'
}
},
height: {
screen: ['100vh', '100dvh']
},
fontFamily: {
sans: ['quicksand', 'quicksand-fallback', ...defaultTheme.fontFamily.sans],
serif: ['italiana', 'italiana-fallback', ...defaultTheme.fontFamily.serif]
}
}
}
};