This commit is contained in:
齐斌 2025-09-24 13:42:54 +08:00
parent fe778fb3bc
commit d25c2fd522
7 changed files with 8 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -14,7 +14,7 @@
width: 100px!important; width: 100px!important;
height: 100px!important; height: 100px!important;
border-radius: 50%; border-radius: 50%;
background: var(--theme-primary, #0E4D67); background: var(--theme-primary, #A76933);
padding: 5px!important; padding: 5px!important;
} }

View File

@ -1,16 +1,16 @@
$theme-primary: #0E4D67; $theme-primary: #A76933;
$theme-darker: rgba(14, 77, 103, 0.5); $theme-darker: rgba(167, 105, 51, 0.5);
$theme-dark: #DFD7F2; $theme-dark: #DFD7F2;
$basic-white: #FFFFFF; $basic-white: #FFFFFF;
$basic-black: #000000; $basic-black: #000000;
$text-disabled: #C3C3C3; $text-disabled: #C3C3C3;
$text-basic: #939393; $text-basic: #939393;
$text-theme: #0E4D67; $text-theme: #A76933;
$border-theme: #C1B2E5; $border-theme: #C1B2E5;
$input-bg: #777777; $input-bg: #777777;
$btn-primary: linear-gradient(to left, #0E4D67, #212462); $btn-primary: linear-gradient(to left, #A76933, #212462);
$btn-basic: #EEEAF7; $btn-basic: #EEEAF7;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@ -4,7 +4,7 @@
<div class="wrap2" <div class="wrap2"
v-if="!state.isCollapse"> v-if="!state.isCollapse">
张家港宏通文化传媒有限公司 江阴昇元商务服务有限公司
</div> </div>
</div> </div>
<n-modal v-model:show="showModal" <n-modal v-model:show="showModal"

View File

@ -3,6 +3,6 @@ export const settingConfig= {
sideTheme: 'light', sideTheme: 'light',
sideWidth: 210, sideWidth: 210,
layoutMode: 'ltr', layoutMode: 'ltr',
themeColor: '#0E4D67' themeColor: '#A76933'
} }
export const projectName = import.meta.env.MODE==='main'?'管理系统':'管理系统' export const projectName = import.meta.env.MODE==='main'?'管理系统':'管理系统'

View File

@ -5,7 +5,7 @@ export default {
theme: { theme: {
extend: { extend: {
colors: { colors: {
primary: "#0E4D67", primary: "#A76933",
mainColor: "#764CF6", mainColor: "#764CF6",
}, },
}, },