New backup 2025-03-03 21:15:02

This commit is contained in:
Penelope Gwen 2025-03-03 21:15:02 -08:00
parent b3a86f5f00
commit 5b6242137f
4 changed files with 62 additions and 58 deletions

View file

@ -1,28 +1,25 @@
/* CSS variables /* SCSS variables */
Generated by 'wal' */ $wallpaper: url("None");
:root {
--wallpaper: url("None");
/* Special */ /* Special */
--background: #2C2423; $background: #2C2423;
--foreground: #FFFFFF; $foreground: #FFFFFF;
--cursor: #B87A7A; $cursor: #B87A7A;
/* Colors */ /* Colors */
--color0: #2C2423; $color0: #2C2423;
--color1: #B87A7A; $color1: #B87A7A;
--color2: #7AB87A; $color2: #7AB87A;
--color3: #B8B87A; $color3: #B8B87A;
--color4: #7A7AB8; $color4: #7A7AB8;
--color5: #B87AB8; $color5: #B87AB8;
--color6: #7AB8B8; $color6: #7AB8B8;
--color7: #D9D9D9; $color7: #D9D9D9;
--color8: #918988; $color8: #918988;
--color9: #DBBDBD; $color9: #DBBDBD;
--color10: #BDDBBD; $color10: #BDDBBD;
--color11: #DBDBBD; $color11: #DBDBBD;
--color12: #BDBDDB; $color12: #BDBDDB;
--color13: #DBBDDB; $color13: #DBBDDB;
--color14: #BDDBDB; $color14: #BDDBDB;
--color15: #FFFFFF; $color15: #FFFFFF;
}

View file

@ -2,6 +2,8 @@
all: unset; // Unsets everything so you can style everything from scratch all: unset; // Unsets everything so you can style everything from scratch
font-family: FontAwesome, Overpass; font-family: FontAwesome, Overpass;
} }
@import "./style/colors.scss";
// Global Styles // Global Styles
.bar { .bar {
background-color: #3a3a3a; background-color: #3a3a3a;
@ -38,20 +40,26 @@
font-size: large; font-size: large;
} }
.workspaces button:hover {
color: #D35D6E;
}
.workspaces { .workspaces {
background-color: #B87A7A; background-color: #B87A7A;
color: #2C2423; color: #2C2423;
border-radius: 8px; border-radius: 8px;
} }
.workspaces button { .workspaces button {
background-color: red; background-color: $color9;
color: #fff; border: 2px solid $color1;
color: $color0;
margin: 0px 0px; margin: 0px 0px;
padding: 2px; padding: 2px;
} }
.workspaces button:hover {
background-color: $color1;
transition-property: background-color;
transition-duration: .25s;
}
.workspaces .focused {
background-color: $color1;
}
.workspaces button:first-child { .workspaces button:first-child {
border-radius:8px 0px 0px 8px; border-radius:8px 0px 0px 8px;
} }

View file

@ -6,6 +6,8 @@
(defwidget rightgroup [] (defwidget rightgroup []
(box :class "rightgroup" :orientation "h" :space-evenly false :halign "end" (box :class "rightgroup" :orientation "h" :space-evenly false :halign "end"
" "
" "
(sysdisk) (sysdisk)
(sysmem) (sysmem)
{formattime(EWW_TIME,"%b %d, %Y %H:%M")} {formattime(EWW_TIME,"%b %d, %Y %H:%M")}
@ -23,7 +25,7 @@
(for entry in array (for entry in array
(button :onclick `swaymsg workspace "${entry.name}"` (button :onclick `swaymsg workspace "${entry.name}"`
:class {entry.focused ? "focused" : ""} :class {entry.focused ? "focused" : ""}
`${entry.name}`)))) `${replace(entry.name,".*:","")}`))))
(defwidget systemtray [] (defwidget systemtray []
(systray (systray

View file

@ -1,28 +1,25 @@
/* CSS variables /* SCSS variables */
Generated by 'wal' */ $wallpaper: url("None");
:root {
--wallpaper: url("None");
/* Special */ /* Special */
--background: #2C2423; $background: #2C2423;
--foreground: #FFFFFF; $foreground: #FFFFFF;
--cursor: #B87A7A; $cursor: #B87A7A;
/* Colors */ /* Colors */
--color0: #2C2423; $color0: #2C2423;
--color1: #B87A7A; $color1: #B87A7A;
--color2: #7AB87A; $color2: #7AB87A;
--color3: #B8B87A; $color3: #B8B87A;
--color4: #7A7AB8; $color4: #7A7AB8;
--color5: #B87AB8; $color5: #B87AB8;
--color6: #7AB8B8; $color6: #7AB8B8;
--color7: #D9D9D9; $color7: #D9D9D9;
--color8: #918988; $color8: #918988;
--color9: #DBBDBD; $color9: #DBBDBD;
--color10: #BDDBBD; $color10: #BDDBBD;
--color11: #DBDBBD; $color11: #DBDBBD;
--color12: #BDBDDB; $color12: #BDBDDB;
--color13: #DBBDDB; $color13: #DBBDDB;
--color14: #BDDBDB; $color14: #BDDBDB;
--color15: #FFFFFF; $color15: #FFFFFF;
}