mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
/**
|
|
* notion-enhancer: light+
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export default async function ({ fmt }, db) {
|
|
{
|
|
const primary = await db.get(['primary']),
|
|
[r, g, b] = primary
|
|
.slice(5, -1)
|
|
.split(',')
|
|
.map((i) => parseInt(i));
|
|
if (!(r === 46 && g === 170 && b === 220)) {
|
|
document.documentElement.style.setProperty('--light_plus--accent_blue', primary);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_blue-selection',
|
|
`rgba(${r},${g},${b},0.2)`
|
|
);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_blue-hover',
|
|
fmt.rgbLogShade(0.05, primary)
|
|
);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_blue-active',
|
|
fmt.rgbLogShade(0.025, primary)
|
|
);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_blue-text',
|
|
fmt.rgbContrast(r, g, b)
|
|
);
|
|
}
|
|
}
|
|
|
|
{
|
|
const secondary = await db.get(['secondary']),
|
|
[r, g, b] = secondary
|
|
.slice(5, -1)
|
|
.split(',')
|
|
.map((i) => parseInt(i));
|
|
if (!(r === 235 && g === 87 && b === 87)) {
|
|
document.documentElement.style.setProperty('--light_plus--accent_red', secondary);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_red-button',
|
|
`rgba(${r},${g},${b},0.2)`
|
|
);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_red-text',
|
|
fmt.rgbContrast(r, g, b)
|
|
);
|
|
}
|
|
}
|
|
|
|
{
|
|
const highlight = await db.get(['highlight']),
|
|
[r, g, b, a] = highlight
|
|
.slice(5, -1)
|
|
.split(',')
|
|
.map((i) => parseFloat(i));
|
|
if (!(r === 0 && g === 0 && b === 0 && a === 0)) {
|
|
document.documentElement.style.setProperty('--light_plus--accent_highlight', highlight);
|
|
document.documentElement.style.setProperty(
|
|
'--light_plus--accent_highlight-shaded',
|
|
fmt.rgbLogShade(0.1, highlight)
|
|
);
|
|
}
|
|
}
|
|
}
|