feat: add lang ts to script block

This commit is contained in:
Dominik Pschenitschni 2022-02-15 13:07:34 +01:00 committed by kolaente
parent 15b67136fe
commit a3329f1b42
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
89 changed files with 98 additions and 98 deletions

View file

@ -13,7 +13,7 @@ export function objectToCamelCase(object) {
return object
}
let parsedObject = {}
const parsedObject = {}
for (const m in object) {
parsedObject[camelCase(m)] = object[m]
@ -50,7 +50,7 @@ export function objectToSnakeCase(object) {
return object
}
let parsedObject = {}
const parsedObject = {}
for (const m in object) {
parsedObject[snakeCase(m)] = object[m]

View file

@ -11,12 +11,12 @@ export const colorIsDark = color => {
color = '#' + color
}
let rgb = parseInt(color.substring(1, 7), 16) // convert rrggbb to decimal
let r = (rgb >> 16) & 0xff // extract red
let g = (rgb >> 8) & 0xff // extract green
let b = (rgb >> 0) & 0xff // extract blue
const rgb = parseInt(color.substring(1, 7), 16) // convert rrggbb to decimal
const r = (rgb >> 16) & 0xff // extract red
const g = (rgb >> 8) & 0xff // extract green
const b = (rgb >> 0) & 0xff // extract blue
// luma will be a value 0..255 where 0 indicates the darkest, and 255 the brightest
let luma = 0.2126 * r + 0.7152 * g + 0.0722 * b // per ITU-R BT.709
const luma = 0.2126 * r + 0.7152 * g + 0.0722 * b // per ITU-R BT.709
return luma > 128
}