mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
996 B
44 lines
996 B
4 years ago
|
import { colors } from './data.js'
|
||
|
|
||
|
export const generateClasses = () => {
|
||
|
document.head.append(
|
||
|
Object.assign(document.createElement('style'), {
|
||
|
type: 'text/css',
|
||
|
id: 'colors',
|
||
|
innerHTML: colors
|
||
|
.map((color) => `.${color} { background: ${color}; }`)
|
||
|
.join('\n'),
|
||
|
}),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
const body = document.querySelector('body')
|
||
|
|
||
|
const cold = ['aqua', 'blue', 'turquoise', 'green', 'purple', 'cyan', 'navy']
|
||
|
|
||
|
export const generateColdShades = () => {
|
||
|
const shades = colors.filter((color) => {
|
||
|
for (const c of cold) {
|
||
|
if (color.includes(c)) {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
shades.forEach((c) => {
|
||
|
const shade = document.createElement('div')
|
||
|
shade.className = c
|
||
|
shade.textContent = c
|
||
|
body.append(shade)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export const choseShade = (shade) => {
|
||
|
const all = [...document.querySelectorAll('div')]
|
||
|
all.forEach((a) => {
|
||
|
if (!a.classList.contains(shade)) {
|
||
|
a.classList.replace(a.className, shade)
|
||
|
}
|
||
|
})
|
||
|
}
|