blob: e8777db5de0eacac0f08812fe2a5e367ed47dff6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
pragma Singleton
import QtQuick
import Quickshell
Singleton {
property Item get: nordic
Item {
id: windowsXP
property string barBgColor: "#88235EDC"
property string buttonBorderColor: "#99000000"
property bool buttonBorderShadow: false
property string buttonBackgroundColor: "#1111CC"
property bool onTop: false
property string iconColor: "green"
property string iconPressedColor: "green"
property Gradient barGradient: black.barGradient
}
Item {
id: black
property string barBgColor: "#cc000000"
property string buttonBorderColor: "#BBBBBB"
property string buttonBackgroundColor: "#222222"
property bool buttonBorderShadow: true
property bool onTop: true
property string iconColor: "blue"
property string iconPressedColor: "dark_blue"
}
Item {
id: nordic
// Nord color palette
property string barBgColor: "#aa2E3440" // Nord0 - Polar Night
property string buttonBorderColor: "#4C566A" // Nord3 - Polar Night
property string buttonBackgroundColor: "#3D4550"
property bool buttonBorderShadow: true
property bool onTop: true
property string iconColor: "#88C0D0" // Nord7 - Frost
property string iconPressedColor: "#81A1C1" // Nord9 - Frost
}
Item {
id: cyberpunk
// Tokyo Neon color palette
property string barBgColor: "#881A0B2E" // Deep purple-black
property string buttonBorderColor: "#FF2A6D" // Neon pink
property string buttonBackgroundColor: "#1A1A2E" // Dark blue-black
property bool buttonBorderShadow: true
property bool onTop: true
property string iconColor: "#05D9E8" // Electric blue
property string iconPressedColor: "#FF2A6D" // Neon pink
}
Item {
id: material
// Material Design 3 color palette
property string barBgColor: "#cc1F1F1F" // Surface dark
property string buttonBorderColor: "#2D2D2D" // Surface variant
property string buttonBackgroundColor: "#2D2D2D" // Surface variant
property bool buttonBorderShadow: true
property bool onTop: true
property string iconColor: "#90CAF9" // Primary light
property string iconPressedColor: "#64B5F6" // Primary medium
}
Item {
id: catppuccin
// Catppuccin Mocha color palette
property string barBgColor: "#aa1E1E2E" // Base
property string buttonBorderColor: "#313244" // Surface0
property string buttonBackgroundColor: "#313244" // Surface0
property bool buttonBorderShadow: true
property bool onTop: true
property string iconColor: "#89B4FA" // Blue
property string iconPressedColor: "#74C7EC" // Sapphire
}
}
|