Skip to content

Commit ce59b1f

Browse files
committed
changing color for stl
1 parent d302992 commit ce59b1f

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const onChangeTab = () => {
1414
<main class="main">
1515
<v-tabs
1616
v-model="currentTab"
17-
bg-color="rgb(0, 1, 76)"
17+
bg-color="primary"
1818
color="white"
1919
grow
2020
@update:model-value="onChangeTab"

src/pages/PageMain.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const courses = ['1', '2', '3', '4', '5', '6', '1М', '2М'];
162162
С вопросами обращайтесь в Профком.
163163
</IrdomTooltip>
164164
</div>
165-
<div class="stipend">{{ allDef ? formattedStipend : '?' }}</div>
165+
<div class="stipend bg-primary">{{ allDef ? formattedStipend : '?' }}</div>
166166
</div>
167167
</div>
168168
</template>
@@ -173,7 +173,6 @@ const courses = ['1', '2', '3', '4', '5', '6', '1М', '2М'];
173173
display: flex;
174174
align-items: center;
175175
font-size: 30px;
176-
background: rgb(0 1 76);
177176
color: white;
178177
border-radius: 999px;
179178
padding: 0 16px;

src/vuetify.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { aliases, mdi } from 'vuetify/iconsets/mdi-svg';
44
const profcomffLight = {
55
dark: false,
66
colors: {
7-
primary: 'rgb(0, 1, 76)',
7+
primary: 'rgba(71, 28, 120)',
88
'on-primary': 'rgb(255, 255, 255)',
99

1010
secondary: 'rgb(255, 139, 0)',
@@ -31,11 +31,11 @@ export const vuetify = createVuetify({
3131
},
3232
defaults: {
3333
VBtnToggle: {
34-
color: 'rgb(0, 1, 76)',
34+
color: 'rgba(71, 28, 120)',
3535
elevation: 1,
3636
},
3737
VCheckbox: {
38-
color: 'rgb(0, 1, 76)',
38+
color: 'rgba(71, 28, 120)',
3939
},
4040
},
4141
theme: {

0 commit comments

Comments
 (0)