Files
colorshell/ags/style/_functions.scss
T
2025-02-12 13:39:38 -03:00

15 lines
263 B
SCSS

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