diff --git a/Colors.qml b/Colors.qml index 42dff64..e26a0dc 100644 --- a/Colors.qml +++ b/Colors.qml @@ -5,25 +5,25 @@ import Quickshell Singleton { id: customColors // Core Backgrounds - readonly property color background: "#1D2021" - readonly property color foreground: "#D5C4A1" - readonly property color cursor: "#D5C4A1" + readonly property color background: "#141B1E" + readonly property color foreground: "#DADADA" + readonly property color cursor: "#DADADA" // The 16 Colors of the Apocalypse - readonly property color color0: "#1D2021" - readonly property color color1: "#FB4934" - readonly property color color2: "#B8BB26" - readonly property color color3: "#FABD2F" - readonly property color color4: "#83A598" - readonly property color color5: "#D3869B" - readonly property color color6: "#8EC07C" - readonly property color color7: "#D5C4A1" - readonly property color color8: "#665C54" - readonly property color color9: "#FB4934" - readonly property color color10: "#B8BB26" - readonly property color color11: "#FABD2F" - readonly property color color12: "#83A598" - readonly property color color13: "#D3869B" - readonly property color color14: "#8EC07C" - readonly property color color15: "#FBF1C7" + readonly property color color0: "#232A2D" + readonly property color color1: "#E57474" + readonly property color color2: "#8CCF7E" + readonly property color color3: "#E5C76B" + readonly property color color4: "#67B0E8" + readonly property color color5: "#C47FD5" + readonly property color color6: "#6CBFBF" + readonly property color color7: "#B3B9B8" + readonly property color color8: "#2D3437" + readonly property color color9: "#EF7E7E" + readonly property color color10: "#96D988" + readonly property color color11: "#F4D67A" + readonly property color color12: "#71BAF2" + readonly property color color13: "#CE89DF" + readonly property color color14: "#67CBE7" + readonly property color color15: "#BDC3C2" } diff --git a/modules/Bar/Title.qml b/modules/Bar/Title.qml index 9244545..453b892 100644 --- a/modules/Bar/Title.qml +++ b/modules/Bar/Title.qml @@ -14,6 +14,6 @@ Item { id: text anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter - text: root.activeWindow?.activated ?Hyprland.activeToplevel.title : "Desktop" + text: root.activeWindow?.activated ? Hyprland.activeToplevel.title : "Desktop" } } diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index 52f1c9d..f8ddafe 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -3,12 +3,10 @@ import "../settings/" import "../" Text { - property real fill font.family: "Material Symbols Rounded" color: Colors.foreground - font.pixelSize: Settings.config.fontSize + 2 + font.pixelSize: Settings.config.fontSize + 1 font.variableAxes: ({ - FILL: fill.toFixed(1), GRAD: 200, wght: 400 }) diff --git a/settings/Settings.qml b/settings/Settings.qml index 92e6f52..02dd731 100644 --- a/settings/Settings.qml +++ b/settings/Settings.qml @@ -21,9 +21,9 @@ Singleton { adapter: JsonAdapter { id: settingsAdapter - property var currentWall: "/home/lucy/.walls/faris.jpg" + property var currentWall: "/home/lucy/.walls/frierensuff.png" property var barHeight: 28 - property var font: "SauceCodePro Nerd Font Mono" + property var font: "Google Sans Code" property var fontSize: 14 property var rounding: 10 property var wallDir: "/home/lucy/.walls" diff --git a/settings/config.json b/settings/config.json index d6ce790..e4c5765 100644 --- a/settings/config.json +++ b/settings/config.json @@ -1,8 +1,8 @@ { "barHeight": 28, - "currentWall": "/home/lucy/.walls/faris.jpg", + "currentWall": "/home/lucy/.walls/frierensuff.png", "floating": true, - "font": "SauceCodePro Nerd Font Mono", + "font": "Google Sans Code", "fontSize": 14, "paddingSides": 10, "paddingTop": 10,