Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 30 additions & 24 deletions src/move37/web/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--text-soft: #95add0;
--accent: #8ee8ff;
--scheduled: #99ffcf;
--working: #ffe18d;
--working: #9fe8ff;
min-height: 100dvh;
position: relative;
display: block;
Expand Down Expand Up @@ -317,9 +317,12 @@
animation: spherePulse 1.1s ease-in-out infinite;
}

.sphere-glow,
.sphere-glow-success,
.sphere-glow-failure {
opacity: 0;
mix-blend-mode: screen;
filter: saturate(1.24);
transition: opacity 900ms ease;
}

Expand Down Expand Up @@ -515,29 +518,29 @@
}

.dock-button.focus-pause {
border-color: #ffd98a52;
background: linear-gradient(180deg, #312610bf 0%, #291f0ddd 100%);
color: #ffe2a6;
box-shadow: 0 0 18px #ffd6671d;
border-color: #87c9ff52;
background: linear-gradient(180deg, #13283abf 0%, #102132dd 100%);
color: #c9ebff;
box-shadow: 0 0 18px #69c7ff1d;
}

.dock-button.focus-pause:hover {
border-color: #ffe39a74;
background: linear-gradient(180deg, #3a2d13e2 0%, #32260fe8 100%);
box-shadow: 0 0 20px #ffd66730;
border-color: #9dd8ff74;
background: linear-gradient(180deg, #163149e2 0%, #12283ce8 100%);
box-shadow: 0 0 20px #69c7ff30;
}

.dock-button.focus-stop {
border-color: #ff9fb452;
background: linear-gradient(180deg, #30131abf 0%, #260f14dd 100%);
color: #ffc2cd;
box-shadow: 0 0 18px #ff829a1f;
border-color: #8ab9ff52;
background: linear-gradient(180deg, #15233abf 0%, #111b2ddd 100%);
color: #d5e7ff;
box-shadow: 0 0 18px #78b7ff1f;
}

.dock-button.focus-stop:hover {
border-color: #ffb0c072;
background: linear-gradient(180deg, #38161ee2 0%, #301218e8 100%);
box-shadow: 0 0 20px #ff829a30;
border-color: #9bc7ff72;
background: linear-gradient(180deg, #182946e2 0%, #13203ae8 100%);
box-shadow: 0 0 20px #78b7ff30;
}

.dock-button svg {
Expand Down Expand Up @@ -863,7 +866,7 @@
}

.task-list-item-meta.working {
color: #ffe18d;
color: #9fe8ff;
}

.task-empty {
Expand Down Expand Up @@ -987,7 +990,7 @@
}

.node-halo.note {
fill: #ffd77d30;
fill: #8edfff24;
}

.node-core {
Expand Down Expand Up @@ -1021,13 +1024,13 @@
}

.node-core.working {
fill: #ffd667;
fill: #9fe8ff;
stroke: transparent;
}

.node-core.note {
fill: #ffcf70;
stroke: #ffe4a8;
fill: #7ec7ff;
stroke: #b7e8ff;
stroke-width: 0.45;
}

Expand Down Expand Up @@ -1060,7 +1063,7 @@
}

.node-label.note {
fill: #ffe7b8;
fill: #d6f0ff;
}

.node-halo.focus-source,
Expand Down Expand Up @@ -1101,12 +1104,15 @@
}

.focus-node-overlay .node-soft-edge.focus-node {
fill: #9fe8ff;
opacity: 0.22;
filter: blur(14px);
}

.focus-node-overlay .node-core.focus-node {
filter: drop-shadow(0 0 30px #ffe58a45);
fill: #b8f1ff;
stroke: transparent;
filter: drop-shadow(0 0 32px #8fdcff40);
}

.focus-node-overlay .node-label.focus-node {
Expand Down Expand Up @@ -1862,7 +1868,7 @@ button.chip {
.sync-feedback.error {
border-color: #ff8f8f33;
background: #2c0d16e8;
color: #ffdbe2;
color: #d6e8ff;
}

.sync-results {
Expand Down Expand Up @@ -2059,7 +2065,7 @@ button.chip {
border-radius: 0.42rem;
border: 1px solid #ff8f8f33;
background: #2c0d16e8;
color: #ffdbe2;
color: #d6e8ff;
font: 500 0.76rem/1.35 "IBM Plex Sans", "Avenir Next", sans-serif;
}

Expand Down
10 changes: 6 additions & 4 deletions src/move37/web/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4136,10 +4136,12 @@ export default function App() {
<svg viewBox={`0 0 ${size.width} ${size.height}`} role="img">
<defs>
<radialGradient id="sphere-halo" cx="50%" cy="50%">
<stop offset="58%" stopColor="#86cbff" stopOpacity="0" />
<stop offset="74%" stopColor="#7cc9ff" stopOpacity="0.2" />
<stop offset="84%" stopColor="#5ca6f5" stopOpacity="0.12" />
<stop offset="100%" stopColor="#2a4f8f" stopOpacity="0" />
<stop offset="63%" stopColor="#6de1ff" stopOpacity="0" />
<stop offset="75%" stopColor="#43b8ff" stopOpacity="0.28" />
<stop offset="84%" stopColor="#236ef4" stopOpacity="0.24" />
<stop offset="91%" stopColor="#1847c4" stopOpacity="0.16" />
<stop offset="96%" stopColor="#12317e" stopOpacity="0.06" />
<stop offset="100%" stopColor="#0d2148" stopOpacity="0" />
</radialGradient>
<radialGradient id="sphere-halo-success" cx="50%" cy="50%">
<stop offset="58%" stopColor="#3dff8f" stopOpacity="0" />
Expand Down
Loading