Skip to content

Commit 14b3e9d

Browse files
committed
change color scheme of app
1 parent 28b19e2 commit 14b3e9d

File tree

4 files changed

+29
-25
lines changed

4 files changed

+29
-25
lines changed

src/components/Canvas.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@
4848
@deactivated="onDeactivated(componentData)"
4949
@dragstop="finishedDrag"
5050
@resizestop="finishedResize"
51-
:style="{ 'background-color': componentData.color }"
51+
:style="{
52+
'background-color': componentData.color,
53+
color: 'black',
54+
}"
5255
:parent="true"
5356
>
5457
<div class="component-title">
@@ -1448,7 +1451,7 @@ li:hover {
14481451
linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
14491452
linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
14501453
linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
1451-
-pie-background: linear-gradient(
1454+
-pie-background: linear-gradient(
14521455
rgba(255, 255, 255, 0.8) 1px,
14531456
transparent 1px
14541457
) -2px -2px / 100px,

src/components/left-sidebar/ComponentTab/LibComponents.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="">
33
<q-btn-dropdown
44
class="selectLib"
5-
color="pink"
5+
color=""
66
label="Select Element+ Component"
77
dropdown-icon="change_history"
88
>
@@ -334,5 +334,6 @@ name: "LibComponents",
334334
margin-top: 20px;
335335
width: 260px;
336336
height: 45px;
337+
background-color: rgb(101 180 132);
337338
}
338339
</style>

src/css/quasar.variables.scss

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
// $warning : #F2C037;
2626

2727
// **************** Taken from OverVue *******************
28-
$primary : #737578;
29-
$secondary : #9744b3;
30-
$accent : #a1ddc2;
31-
$subaccent : #0d0d0d;
32-
$subaccentbtn : #2c384d;
33-
$subprimary : #202122;
34-
$subsecondary : #272a2a;
35-
$menutext : #F0F0F0;
36-
$menuinput : #4b4b4b;
37-
$scroll : #4b4b4b;
38-
$darktext: #34495E;
39-
40-
$positive : #21BA45;
41-
$negative : #f15567;
42-
$info : #31CCEC;
43-
$warning : #F2C037;
44-
45-
// C10015
28+
$primary: #737578;
29+
$secondary: #72d096;
30+
$accent: #a1ddc2;
31+
$subaccent: #0d0d0d;
32+
$subaccentbtn: #2c384d;
33+
$subprimary: #202122;
34+
$subsecondary: #272a2a;
35+
$menutext: #f0f0f0;
36+
$menuinput: #4b4b4b;
37+
$scroll: #4b4b4b;
38+
$darktext: #34495e;
39+
40+
$positive: #21ba45;
41+
$negative: #f15567;
42+
$info: #31ccec;
43+
$warning: #f2c037;
44+
45+
// C10015

src/layouts/MyLayout.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ Description:
1919
src="../assets/OverVue_navLogo.png"
2020
id="nav-logo" />
2121
<div id="undo-redo">
22-
<q-btn>
22+
<!-- <q-btn>
2323
<i
2424
v-if="doneAction.length"
2525
class="fa fa-undo"
2626
aria-hidden="true"
2727
@click="clickedUndo"
2828
></i>
2929
<i v-else class="fa fa-undo unavailable" aria-hidden="true"></i>
30-
</q-btn>
31-
<q-btn>
30+
</q-btn> -->
31+
<!-- <q-btn>
3232
<i
3333
v-if="undoneAction.length"
3434
class="fa fa-redo"
3535
aria-hidden="true"
3636
@click="clickedRedo"
3737
></i>
3838
<i v-else class="fa fa-redo unavailable" aria-hidden="true"></i>
39-
</q-btn>
39+
</q-btn> -->
4040
<GridDensity /></div
4141
></q-toolbar-title>
4242
<div></div>

0 commit comments

Comments
 (0)