This commit is contained in:
syuilo 2018-09-27 22:30:52 +09:00
parent 03388cfbc7
commit 12d0cbafc0
2 changed files with 2 additions and 6 deletions

View File

@ -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']);

View File

@ -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;
}
}