-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanda.config.ts
71 lines (69 loc) · 1.81 KB
/
panda.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { recipes } from '@/themes/recipes'
import { defineConfig, defineGlobalStyles } from '@pandacss/dev'
const globalCss = defineGlobalStyles({
body: {
color: 'base',
bg: 'bg.base',
},
})
export default defineConfig({
preflight: true,
include: ['./src/**/*.{ts,tsx,js,jsx}'],
exclude: [],
theme: {
extend: {
tokens: {
colors: {
base: { value: '#bdc6e9' },
head: { value: '#ffffff' },
error: { value: '#f87171' },
link: { value: '#f472b6' },
bg: {
base: { value: '#1a1e2e' },
codeBlock: { value: '#2b3047' },
},
border: {
section: { value: '#312e81' },
},
input: {
border: {
base: { value: '#999eef' },
focus: { value: '#7c3aed' },
},
placeholder: { value: '#475569' },
},
button: {
bg: {
base: { value: '#e879f9' },
hover: { value: '#22d3ee' },
},
},
icon: { value: '#c4b5fd' },
postCard: {
title: {
base: { value: '#ffffff' },
hover: { value: '#f0abfc' },
},
tag: { value: '#f0abfc' },
bg: { value: 'linear-gradient(to bottom right, #647dee, #7f53ac)' },
},
post: {
base: { value: '#939ab5' },
code: { value: '#f2f4ffcc' },
},
header: {
active: { value: 'linear-gradient(to bottom, #00f1f9, #cb33f4)' },
bg: { value: '#1a1e2e4d' },
},
avatar: {
ring: { value: '#999eef' },
},
divider: { value: '#2A2F40' },
},
},
recipes,
},
},
globalCss,
outdir: 'styled-system',
})