Use existing code

This commit is contained in:
RMidhunSuresh 2022-07-11 16:58:22 +05:30
parent 2947f9f6ff
commit 161e29b36e
1 changed files with 1 additions and 24 deletions

View File

@ -15,30 +15,7 @@ limitations under the License.
*/
import type {ThemeInformation} from "./ThemeLoader";
import {ColorSchemePreference} from "./ThemeLoader";
import {offColor} from 'off-color';
function derive(value, operation, argument, isDark) {
const argumentAsNumber = parseInt(argument);
if (isDark) {
// For dark themes, invert the operation
if (operation === 'darker') {
operation = "lighter";
}
else if (operation === 'lighter') {
operation = "darker";
}
}
switch (operation) {
case "darker": {
const newColorString = offColor(value).darken(argumentAsNumber / 100).hex();
return newColorString;
}
case "lighter": {
const newColorString = offColor(value).lighten(argumentAsNumber / 100).hex();
return newColorString;
}
}
}
import {derive} from "../../../scripts/postcss/color.mjs";
export class ThemeBuilder {
// todo: replace any with manifest type when PR is merged