me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

1pragma Singleton 2 3import QtQuick 4 5QtObject { 6 // Catppuccin Frappe palette 7 readonly property color rosewater: "#f2d5cf" 8 readonly property color flamingo: "#eebebe" 9 readonly property color pink: "#f4b8e4" 10 readonly property color mauve: "#ca9ee6" 11 readonly property color red: "#e78284" 12 readonly property color maroon: "#ea999c" 13 readonly property color peach: "#ef9f76" 14 readonly property color yellow: "#e5c890" 15 readonly property color green: "#a6d189" 16 readonly property color teal: "#81c8be" 17 readonly property color sky: "#99d1db" 18 readonly property color sapphire: "#85c1dc" 19 readonly property color blue: "#8caaee" 20 readonly property color lavender: "#babbf1" 21 22 readonly property color text: "#c6d0f5" 23 readonly property color subtext1: "#b5bfe2" 24 readonly property color subtext0: "#a5adce" 25 readonly property color overlay2: "#949cbb" 26 readonly property color overlay1: "#838ba7" 27 readonly property color overlay0: "#737994" 28 readonly property color surface2: "#626880" 29 readonly property color surface1: "#51576d" 30 readonly property color surface0: "#414559" 31 readonly property color base: "#303446" 32 readonly property color mantle: "#292c3c" 33 readonly property color crust: "#232634" 34}