Skip to content

Commit 9e8ae0e

Browse files
alexzhang1030webfansplz
andauthoredNov 11, 2024··
feat: refine bg/text color for dark mode (#686)
Co-authored-by: arlo <webfansplz@gmail.com>
1 parent 30d7875 commit 9e8ae0e

File tree

10 files changed

+35
-20
lines changed

10 files changed

+35
-20
lines changed
 

‎packages/applet/src/components/state/RootStateViewer.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const { expanded, toggleExpanded } = useToggleExpanded(props.expandedStateId)
5050
/>
5151
<!-- placeholder -->
5252
<span v-else pl5 />
53-
<span font-state-field text-3.5>
53+
<span font-state-field text-3.5 text-hex-a3a3a3>
5454
{{ key }}
5555
</span>
5656
</div>

‎packages/applet/src/components/state/StateFieldViewer.vue

+14-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const stateFormatClass = computed(() => {
3838
if (type.value === 'custom')
3939
return `${(props.data.value as InspectorCustomState)._custom?.type ?? 'string'}-custom-state`
4040
else
41-
return ``
41+
return 'unknown-state-type'
4242
})
4343
4444
const fieldsCount = computed(() => {
@@ -199,12 +199,12 @@ async function submitDrafting() {
199199
/>
200200
<!-- placeholder -->
201201
<span v-else pl5 />
202-
<span op70 class="whitespace-nowrap">
202+
<span whitespace-nowrap text-purple-700 op70 dark:text-purple-300>
203203
{{ normalizedDisplayedKey }}
204204
</span>
205205
<span mx1>:</span>
206206
<StateFieldInputEditor v-if="editing" v-model="editingText" class="mr-1" :custom-type="raw.customType" @cancel="toggleEditing" @submit="submit" />
207-
<span :class="stateFormatClass" class="flex whitespace-nowrap">
207+
<span :class="stateFormatClass" class="flex whitespace-nowrap dark:text-#bdc6cf">
208208
<span class="flex" v-html="normalizedDisplayedValue" />
209209
</span>
210210
<StateFieldEditor
@@ -231,6 +231,17 @@ async function submitDrafting() {
231231
</div>
232232
</template>
233233

234+
<style lang="scss">
235+
// Maybe related https://github.com/vuejs/core/issues/12241
236+
// Let's leave it global for now, until it's fixed
237+
// This will compiled to `.dark[v-xxx] selectors` if using scoped
238+
.function-custom-state {
239+
& > span {
240+
--at-apply: 'dark:text-#997fff!';
241+
}
242+
}
243+
</style>
244+
234245
<style lang="scss" scoped>
235246
// string
236247
:deep(.string-custom-state) {

‎packages/applet/src/modules/components/components/RenderCode.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function close() {
1313
</script>
1414

1515
<template>
16-
<div class="absolute left-0 top-0 h-full w-full flex flex-col rounded-br-2.5 rounded-tr-2.5 bg-white p2 dark:bg-[#121212]">
16+
<div class="absolute left-0 top-0 h-full w-full flex flex-col rounded-br-2.5 rounded-tr-2.5 bg-white p2 dark:bg-#121212">
1717
<div class="h-12 w-full flex items-center justify-between p-2">
1818
<span class="font-500">Render Code</span>
1919
<i class="i-carbon-close cursor-pointer hover:op80" @click="close" />

‎packages/applet/uno.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ export default defineConfig(mergeConfigs([unoConfig, {
3838
],
3939
shortcuts: [{
4040
// general
41-
'bg-base': 'bg-white dark:bg-black',
42-
'text-base': 'text-black dark:text-white',
41+
'bg-base': 'bg-white dark:bg-#121212',
42+
'text-base': 'text-black dark:text-#dfe0e2',
4343
'bg-active': 'bg-gray:5',
4444
'border-base': 'border-gray/20',
4545
'transition-base': 'transition-all duration-200',
4646

4747
// selective list
4848
'selectable-item': 'flex items-center px-2 py-1 rounded cursor-pointer hover:bg-primary-200 dark:(hover:bg-gray-800) @active:(text-white bg-primary-600 hover:(text-white bg-primary-600))',
4949

50-
'code-block': 'dark:bg-[#121212] bg-white',
50+
'code-block': 'dark:bg-#121212 bg-white',
5151

5252
// state
53-
'string-state-type': 'text-#e74c3c dark:(text-#c41a16)',
53+
'string-state-type': 'text-#e74c3c dark:(text-#FFB980)',
5454
'literal-state-type': 'text-#03c dark:(text-#997fff)',
5555
'boolean-state-type': 'text-#27ae60 dark:(text-#abebc6)',
5656
'null-state-type': 'text-#999',

‎packages/client/src/assets/styles/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ body::-webkit-scrollbar {
6868
.v-popper--theme-tooltip .v-popper__arrow-inner,
6969
.v-popper--theme-dropdown .v-popper__arrow-inner {
7070
visibility: visible;
71-
--uno: 'border-white dark:border-hex-121212';
71+
--uno: 'border-white dark:border-#121212';
7272
}
7373

7474
.v-popper--theme-tooltip .v-popper__arrow-outer,

‎packages/client/uno.config.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ export default defineConfig(mergeConfigs([unoConfig, {
5151
],
5252
shortcuts: [{
5353
// general
54-
'bg-base': 'bg-white dark:bg-[#121212]',
55-
'text-base': 'text-black dark:text-white',
54+
'bg-base': 'bg-white dark:bg-#121212',
55+
'text-base': 'text-black dark:text-#dfe0e2',
5656
'bg-active': 'bg-gray:5',
5757
'border-base': 'border-gray/20',
5858
'navbar-base': 'border-b border-base h-50px',
@@ -61,11 +61,11 @@ export default defineConfig(mergeConfigs([unoConfig, {
6161
'x-divider': 'h-1px w-full bg-gray/15',
6262

6363
// glass
64-
'glass-effect': 'backdrop-blur-6 bg-white/80 dark:bg-[#121212]/90',
64+
'glass-effect': 'backdrop-blur-6 bg-white/80 dark:bg-#121212/90',
6565
'navbar-glass': 'sticky z-10 top-0 glass-effect',
6666

6767
// code
68-
'code-block': 'dark:bg-[#121212] bg-white',
68+
'code-block': 'dark:bg-#121212 bg-white',
6969

7070
// panel grids
7171
'panel-grids': 'panel-grids-light dark:panel-grids-dark',
@@ -80,7 +80,7 @@ export default defineConfig(mergeConfigs([unoConfig, {
8080
'state-value': 'text-#444 dark:(text-#bdc6cf)',
8181
'state-value-label': 'text-gray-500',
8282
'state-value-literal': 'text-#03c dark:(text-#997fff)',
83-
'state-value-string': 'text-#c41a16',
83+
'state-value-string': 'text-#FFB980',
8484
}, [/^theme-card-(\w+)$/, $ => `p2 flex gap2 border border-base bg-base items-center rounded min-w-40 min-h-25 justify-center transition-all saturate-0 op50 shadow hover:(op100 bg-${$[1]}/10 text-${$[1]}6 saturate-100)`]],
8585
presets: [
8686
presetAttributify(),

‎packages/devtools-kit/src/core/component/state/custom.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function getFunctionDetails(func: Function) {
2222
return {
2323
_custom: {
2424
type: 'function' satisfies customTypeEnums,
25-
displayText: `<span style="opacity:.5;margin-right:5px;">function</span> <span style="white-space:nowrap;">${escape(name)}${args}</span>`,
25+
displayText: `<span style="opacity:.8;margin-right:5px;">function</span> <span style="white-space:nowrap;">${escape(name)}${args}</span>`,
2626
tooltipText: string.trim() ? `<pre>${string}</pre>` : null,
2727
},
2828
}

‎packages/overlay/src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const panelState = ref<{
2222
const cssVars = computed(() => {
2323
const dark = mode.value === 'dark'
2424
return {
25-
'--vue-devtools-widget-bg': dark ? '#111' : '#ffffff',
25+
'--vue-devtools-widget-bg': dark ? '#121212' : '#ffffff',
2626
'--vue-devtools-widget-fg': dark ? '#F5F5F5' : '#111',
2727
'--vue-devtools-widget-border': dark ? '#3336' : '#efefef',
2828
'--vue-devtools-widget-shadow': dark ? 'rgba(0,0,0,0.3)' : 'rgba(128,128,128,0.1)',

‎packages/ui/src/components/CodeBlock.vue

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ const rendered = computed(() => {
6868
}
6969
}
7070
}
71+
span {
72+
--at-apply: '$ui-bg-base!';
73+
}
74+
--at-apply: '$ui-bg-base!';
7175
}
7276
pre {
7377
&:focus-visible {

‎packages/ui/theme/uno.config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ export const unoConfig = {
4444
'$ui-z-max-override': 'z-2147483647',
4545

4646
// general
47-
'$ui-bg-base': 'bg-white dark:bg-black',
47+
'$ui-bg-base': 'bg-white dark:bg-#121212',
4848
'$ui-base': 'box-border font-inherit',
4949
'$ui-transition': 'transition-all duration-300 ease-in-out',
5050
'$ui-borderless': '!border-transparent !shadow-none',
5151
'$ui-base-br': 'rounded-3px',
5252
'$ui-border-base': 'border-gray/20',
53-
'$ui-text': 'text-black dark:text-white',
54-
'$ui-glass-effect': 'backdrop-blur-6 bg-white/80 dark:bg-black/90',
53+
'$ui-text': 'text-black dark:text-#dfe0e2',
54+
'$ui-glass-effect': 'backdrop-blur-6 bg-white/80 dark:bg-#3C3C3C/90',
5555
},
5656
rules: [
5757
['$ui-font-inherit', { 'font-family': 'inherit' }],

0 commit comments

Comments
 (0)
Please sign in to comment.