Skip to content

Commit 08123d6

Browse files
authored
fix(theme): [card,qr-code,skeleton] add dark theme (#3052)
* fix(theme): [card,qr-code,skeleton] add dark theme * fix(theme): [card,qr-code,skeleton] add dark theme
1 parent ed81c65 commit 08123d6

37 files changed

+80
-75
lines changed

examples/sites/demos/pc/app/card/basic-usage-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const image = ref(`${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/dsj.p
1818
1919
<style scoped>
2020
.card-wrap {
21-
background: #f5f5f5;
21+
background: var(--tv-color-bg-gray-1);
2222
padding: 16px;
2323
}
2424
</style>

examples/sites/demos/pc/app/card/basic-usage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default {
2626
2727
<style scoped>
2828
.card-wrap {
29-
background: #f5f5f5;
29+
background: var(--tv-color-bg-gray-1);
3030
padding: 16px;
3131
}
3232
</style>

examples/sites/demos/pc/app/card/card-disabled-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const options = ref([
3939

4040
<style scoped>
4141
.card-wrap {
42-
background: #f5f5f5;
42+
background: var(--tv-color-bg-gray-1);
4343
padding: 16px;
4444
}
4545
</style>

examples/sites/demos/pc/app/card/card-disabled.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default {
4747

4848
<style scoped>
4949
.card-wrap {
50-
background: #f5f5f5;
50+
background: var(--tv-color-bg-gray-1);
5151
padding: 16px;
5252
}
5353
</style>

examples/sites/demos/pc/app/card/card-events-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function iconClick(item, index) {
6060

6161
<style scoped>
6262
.card-wrap {
63-
background: #f5f5f5;
63+
background: var(--tv-color-bg-gray-1);
6464
padding: 16px;
6565
}
6666
</style>

examples/sites/demos/pc/app/card/card-events.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default {
6969

7070
<style scoped>
7171
.card-wrap {
72-
background: #f5f5f5;
72+
background: var(--tv-color-bg-gray-1);
7373
padding: 16px;
7474
}
7575
</style>

examples/sites/demos/pc/app/card/card-group-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function change(val) {
6363

6464
<style scoped>
6565
.card-wrap {
66-
background: #f5f5f5;
66+
background: var(--tv-color-bg-gray-1);
6767
padding: 16px;
6868
}
6969
</style>

examples/sites/demos/pc/app/card/card-group.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default {
7373

7474
<style scoped>
7575
.card-wrap {
76-
background: #f5f5f5;
76+
background: var(--tv-color-bg-gray-1);
7777
padding: 16px;
7878
}
7979
</style>

examples/sites/demos/pc/app/card/card-select-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const dataArr = ref([
8686
<style scoped>
8787
.card-wrap {
8888
width: 100%;
89-
background: #f5f5f5;
89+
background: var(--tv-color-bg-gray-1);
9090
padding: 16px;
9191
display: flex;
9292
justify-content: space-between;

examples/sites/demos/pc/app/card/card-select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default {
9696
<style scoped>
9797
.card-wrap {
9898
width: 100%;
99-
background: #f5f5f5;
99+
background: var(--tv-color-bg-gray-1);
100100
padding: 16px;
101101
display: flex;
102102
justify-content: space-between;

0 commit comments

Comments
 (0)