Skip to content

Commit

Permalink
Improve themes
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchox5 committed Jan 17, 2025
1 parent 94a9bbc commit 0987bb0
Showing 1 changed file with 32 additions and 30 deletions.
62 changes: 32 additions & 30 deletions src/scss/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,63 +59,65 @@ o-arc:hover {
/* Dev theme based on default*/
.dev-orbit.gravity-spot {
background: none;
border: 0.2px dashed var(--o-red-light);
border: 1px dashed var(--o-red-light);
}

.dev-orbit {
.gravity-spot {
background: none;
border: 0.2px dashed var(--o-red-light);
border: 1px dashed var(--o-red-light);
}

.orbit, [class*='orbit-'] {
border: 0.2px solid var(--o-red-light);
border: 1px dashed var(--o-red-light);
}

.satellite {
background-color: transparent;
border: 1px solid currentColor;
border: 1px dashed var(--o-red-light);
}

.vector {
border: none;
background: currentColor;
background: var(--o-red-light);
}

.side {
border: none;
background: currentColor;
background: var(--o-red-light);
}

o-progress {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-fill: var(--o-red-lighter);
--o-stroke: var(--o-red-lighter);
--o-stroke-width: 1;
--o-back-fill: transparent;
--o-back-stroke: none;
--o-back-fill: var(--o-red-lighter);
--o-back-stroke: var(--o-red-lighter);
--o-back-stroke-width: 1;
fill-opacity: 0.5;
}

o-progress:hover {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-stroke-width: 1;
--o-back-fill: transparent;
--o-back-stroke: none;
--o-back-stroke-width: 1;
--o-fill: var(--o-red-light);
--o-stroke: var(--o-red-light);
--o-stroke-width: 2;
--o-back-fill: var(--o-red-light);
--o-back-stroke: var(--o-red-light);
--o-back-stroke-width: 2;
}

o-arc {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-fill: var(--o-red-lighter);
--o-stroke: var(--o-red-lighter);
--o-stroke-width: 1;
--o-color: currentcolor;
fill-opacity: 0.5;
}

o-arc:hover {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-stroke-width: 1;
--o-fill: var(--o-red-light);
--o-stroke: var(--o-red-light);
--o-stroke-width: 2;
--o-color: currentcolor;
}

Expand Down Expand Up @@ -150,33 +152,33 @@ o-arc:hover {

o-progress {
--o-fill: var(--o-cyan-light);
--o-stroke: var(--o-fill);
--o-stroke: var(--o-cyan);
--o-stroke-width: 1;
--o-back-fill: transparent;
--o-back-stroke: none;
--o-back-stroke-width: 1;
}

o-progress:hover {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-stroke-width: 1;
--o-fill: var(--o-cyan-lighter);
--o-stroke: var(--o-cyan-light);
--o-stroke-width: 2;
--o-back-fill: transparent;
--o-back-stroke: none;
--o-back-stroke-width: 1;
--o-back-stroke-width: 2;
}

o-arc {
--o-fill: var(--o-cyan-light);
--o-stroke: var(--o-fill);
--o-stroke: var(--o-cyan);
--o-stroke-width: 1;
--o-color: var(--o-cyan-darker);
}

o-arc:hover {
--o-fill: var(--o-gray-light);
--o-stroke: var(--o-fill);
--o-stroke-width: 1;
--o-fill: var(--o-cyan-lighter);
--o-stroke: var(--o-cyan-light);
--o-stroke-width: 2;
--o-color: currentcolor;
}

Expand Down

0 comments on commit 0987bb0

Please sign in to comment.