Skip to content
Snippets Groups Projects
Unverified Commit 0c7111b4 authored by syuilo's avatar syuilo
Browse files

wip

parent ef74653a
No related branches found
No related tags found
No related merge requests found
......@@ -62,10 +62,6 @@ function compile(theme: Theme): { [key: string]: string } {
if (k == 'meta') return;
const c = getColor(v);
props[k] = genValue(c);
props[`${k}-r`] = c.toRgb().r;
props[`${k}-g`] = c.toRgb().g;
props[`${k}-b`] = c.toRgb().b;
props[`${k}-a`] = c.toRgb().a;
});
const primary = getColor(props['primary']);
......
......@@ -33,7 +33,7 @@ a
@css {
a {
tap-highlight-color: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.7) !important;
-webkit-tap-highlight-color: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.7) !important;
tap-highlight-color: var(--primaryAlpha07) !important;
-webkit-tap-highlight-color: var(--primaryAlpha07) !important;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment