tangled
alpha
login
or
join now
dunkirk.sh
/
pstream-ng
1
fork
atom
pstream is dead; long live pstream
taciturnaxolotl.github.io/pstream-ng/
1
fork
atom
overview
issues
pulls
pipelines
prettier
Pas
2 weeks ago
f6e4140c
10d82dcd
+6
-2
1 changed file
expand all
collapse all
unified
split
themes
custom.ts
+6
-2
themes/custom.ts
···
21
21
const result: any = {};
22
22
for (const key in theme) {
23
23
if (typeof theme[key] === "object" && theme[key] !== null) {
24
24
-
result[key] = generateCustomThemeStructure(theme[key], `${prefix}${key}-`);
24
24
+
result[key] = generateCustomThemeStructure(
25
25
+
theme[key],
26
26
+
`${prefix}${key}-`,
27
27
+
);
25
28
} else {
26
26
-
result[key] = `rgb(var(${cssVarName(`${prefix}${key}`)}) / <alpha-value>)`;
29
29
+
result[key] =
30
30
+
`rgb(var(${cssVarName(`${prefix}${key}`)}) / <alpha-value>)`;
27
31
}
28
32
}
29
33
return result;