Vesktop: theming

This commit is contained in:
ItsLemmy
2025-10-05 18:22:00 -04:00
parent de10e0968a
commit cc0b5762d4
2 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
--bg-2: {{colors.surface_container.default.hex}}; /* dark buttons */
--bg-3: {{colors.surface_container_highest.default.hex}}; /* spacing, secondary elements */
--bg-4: {{colors.surface.default.hex}}; /* main background color */
--hover: {{colors.surface_container_highest.default.hex}}; /* channels and buttons when hovered */
--hover: {{colors.surface_container_high.default.hex}}; /* channels and buttons when hovered */
--active: {{colors.surface_container_highest.default.hex}}; /* channels and buttons when clicked or selected */
--active-2: {{colors.surface.default.hex}}; /* extra state for transparent buttons */
--message-hover: {{colors.surface_variant.default.hex}}; /* messages when hovered */
+12 -1
View File
@@ -333,7 +333,7 @@ Singleton {
"color": ColorVariants.generateContainer(variant.mSurface, true)
}
},
"surface_container_highest": {
"surface_container_high": {
"light": {
"color": ColorVariants.generateBright(ColorVariants.generateContainer(variant.mSurface, false))
},
@@ -343,6 +343,17 @@ Singleton {
"dark": {
"color": ColorVariants.generateBright(ColorVariants.generateContainer(variant.mSurface, true))
}
},
"surface_container_highest": {
"light": {
"color": ColorVariants.generateBright(ColorVariants.generateBright(ColorVariants.generateContainer(variant.mSurface, false)))
},
"default": {
"color": ColorVariants.generateBright(ColorVariants.generateBright(ColorVariants.generateContainer(variant.mSurface, true)))
},
"dark": {
"color": ColorVariants.generateBright(ColorVariants.generateBright(ColorVariants.generateContainer(variant.mSurface, true)))
}
}
}
}