summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2024-11-29 16:47:23 +0100
committerJasper Ras <jras@hostnet.nl>2024-11-29 16:47:23 +0100
commit220a67f3b9f71d13da133014226dc86970c67410 (patch)
treea43fb1e24172b4562e255453773136e230913bd8
parent1792876b787cf82b21efe239ea89877103b85930 (diff)
styling and datetime changes
-rw-r--r--style.scss10
-rw-r--r--widget/Bar.tsx2
2 files changed, 6 insertions, 6 deletions
diff --git a/style.scss b/style.scss
index f028f45..7fa4533 100644
--- a/style.scss
+++ b/style.scss
@@ -1,16 +1,16 @@
@use "sass:color";
-$bg: #081221;
-$fg: #f1f1f1;
-$accent: #378DF7;
+$bg: #2E1823;
+$fg: #fecdb2;
+$accent: #1CA2F4;
$radius: 7px;
window.Bar {
border: none;
box-shadow: none;
- background-color: color.adjust($bg, $alpha: -0.3);
+ background-color: $bg;
color: $fg;
- font-size: 1.1em;
+ font-size: 1em;
font-weight: bold;
button {
diff --git a/widget/Bar.tsx b/widget/Bar.tsx
index 57c2068..43d216b 100644
--- a/widget/Bar.tsx
+++ b/widget/Bar.tsx
@@ -155,7 +155,7 @@ export default function Bar(monitor: Gdk.Monitor) {
<Wifi />
<AudioSlider />
<BatteryLevel />
- <Time format="%H:%M - %d/%m/%Y wk.%V" />
+ <Time format="%a %b %d %H:%I:%S %Y W%V" />
</box>
</centerbox>
</window>