-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.config.ts
50 lines (48 loc) · 1.97 KB
/
uno.config.ts
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
// uno.config.ts
import { defineConfig, presetUno } from 'unocss'
// https://github.com/system-fonts/modern-font-stacks
const systemFonts = {
systemui: 'system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji',
transitional: 'Charter, Bitstream Charter, Sitka Text, Cambria, serif',
oldstyle: 'Iowan Old Style, Palatino Linotype, URW Palladio L, P052, serif',
humanist: 'Seravek, Gill Sans Nova, Ubuntu, Calibri, DejaVu Sans, source-sans-pro, sans-serif',
geohumanist: 'Avenir, Montserrat, Corbel, URW Gothic, source-sans-pro, sans-serif',
classhuman: 'Optima, Candara, Noto Sans, source-sans-pro, sans-serif',
neogrote: 'Inter, Roboto, Helvetica Neue, Arial Nova, Nimbus Sans, Arial, sans-serif',
monoslab: 'Nimbus Mono PS, Courier New, monospace',
monocode: 'ui-monospace, Cascadia Code, Source Code Pro, Menlo, Consolas, DejaVu Sans Mono, monospace',
industrial: 'Bahnschrift, DIN Alternate, Franklin Gothic Medium, Nimbus Sans Narrow, sans-serif-condensed, sans-serif',
roundsans: 'ui-rounded, Hiragino Maru Gothic ProN, Quicksand, Comfortaa, Manjari, Arial Rounded MT, Arial Rounded MT Bold, Calibri, source-sans-pro, sans-serif',
slabserif: 'Rockwell, Rockwell Nova, Roboto Slab, DejaVu Serif, Sitka Small, serif',
antique: 'Superclarendon, Bookman Old Style, URW Bookman, URW Bookman L, Georgia Pro, Georgia, serif',
didone: 'Didot, Bodoni MT, Noto Serif Display, URW Palladio L, P052, Sylfaen, serif',
handwritten: 'Segoe Print, Bradley Hand, Chilanka, TSCu_Comic, casual, cursive'
}
export default defineConfig({
presets: [
presetUno()
],
theme: {
fontFamily: {
...systemFonts,
lora: 'Lora'
},
colors: {
light: {
1: '#ffffff',
2: '#f6f5f4',
3: '#deddda',
4: '#c0bfbc',
5: '#9a9996'
},
dark: {
1: '#77767b',
2: '#5e5c64',
3: '#3d3846',
4: '#241f31',
5: '#000000'
},
accent: '#1c71d8'
}
}
})