Skip to content

Commit 44c1ed6

Browse files
committed
chore(merge): merge token changes ; update deps
2 parents 6db7df6 + da3ec0b commit 44c1ed6

4 files changed

Lines changed: 6 additions & 19 deletions

File tree

components/AppFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ css({
6767
'.message': {
6868
textAlign: 'center',
6969
marginBottom: '{space.4}',
70-
color: '{elements.color.text.secondary.default}'
70+
color: '{elements.text.secondary.color.static}'
7171
},
7272
'.icons': {
7373
display: 'grid',

components/AppHeader.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ css({
6262
'.overlay': {
6363
position: 'absolute',
6464
top: 'calc(var(--header-padding) + var(--logo-height) + {space.2})',
65-
backgroundColor: '{alpine.backdrop.backgroundColor.light}',
65+
backgroundColor: '{alpine.backdrop.backgroundColor}',
6666
border: '1px solid {color.gray.200}',
6767
borderRadius: '{radii.md}',
6868
padding: '{space.6}',
@@ -93,8 +93,7 @@ css({
9393
display: 'none'
9494
},
9595
'@dark': {
96-
backgroundColor: '{alpine.backdrop.backgroundColor.dark}',
97-
border: '1px solid {color.gray.800}',
96+
borderColor: '{color.gray.800}',
9897
}
9998
},
10099
'.logo': {

layouts/article.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ css({
4848
display: 'inline-flex',
4949
alignItems: 'center',
5050
fontSize: '{text.lg.fontSize}',
51-
borderBottom: '1px solid {elements.border.secondary.default}',
51+
borderBottom: '1px solid {elements.border.secondary.static}',
5252
'& :deep(svg)': {
5353
width: '{size.16}',
5454
height: '{size.16}',
@@ -66,7 +66,7 @@ css({
6666
marginBottom: '{space.4}'
6767
},
6868
time: {
69-
color: '{elements.color.text.secondary.default}'
69+
color: '{elements.text.secondary.color.static}'
7070
},
7171
'.prose': {
7272
'& :deep(h1)': {

tokens.config.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineTheme({
1111
},
1212
backdrop: {
1313
backgroundColor: {
14-
light: '#f4f4f5b3', // TODO: rgba({color.gray.100}, 0.7)
14+
initial: '#f4f4f5b3', // TODO: rgba({color.gray.100}, 0.7)
1515
dark: '#18181bb3' // TODO: rgba({color.gray.900}, 0.7)
1616
}
1717
},
@@ -37,17 +37,5 @@ export default defineTheme({
3737
p: {
3838
fontSize: '18px'
3939
},
40-
code: {
41-
block: {
42-
backgroundColor: {
43-
light: 'transparent',
44-
dark: 'transparent'
45-
},
46-
borderColor: {
47-
light: '{color.gray.200}',
48-
dark: '{color.gray.800}'
49-
}
50-
}
51-
}
5240
}
5341
})

0 commit comments

Comments
 (0)