Files
colorshell/ags/style/_functions.scss
T
retrozinndev b1db748351 feat: use gtk icons instead of nerdfonts across the shell
also removed hour count from recording widgets
2025-06-04 17:29:36 -03:00

15 lines
264 B
SCSS

@use "sass:color";
/**
* GTK3 only supports sRGB color space, unfortunately
*/
@function toRGB($color) {
@return rgba(
color.channel($color, "red"),
color.channel($color, "green"),
color.channel($color, "blue"),
color.alpha($color)
);
}