-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathd2l-colors.js
38 lines (33 loc) · 1.79 KB
/
d2l-colors.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import '@brightspace-ui/core/components/colors/colors.js';
import '@polymer/polymer/polymer-legacy.js';
const $_documentContainer = document.createElement('template');
$_documentContainer.innerHTML = `<custom-style>
<style is="custom-style">
html {
/* deprecated */
--d2l-color-white: #fff;
--d2l-color-woolonardo: var(--d2l-color-sylvite);
--d2l-color-titanius: var(--d2l-color-mica);
--d2l-color-pressicus: var(--d2l-color-corundum);
--d2l-color-violettine: var(--d2l-color-amethyst-minus-1);
--d2l-color-panthera: var(--d2l-color-tourmaline-plus-1);
--d2l-color-koolaudica: var(--d2l-color-peridot);
--d2l-color-deephonica: var(--d2l-color-malachite);
--d2l-color-buttonic: linear-gradient(to bottom, var(--d2l-color-regolith) 0%, var(--d2l-color-gypsum) 100%);
--d2l-color-meglor: linear-gradient(to bottom, var(--d2l-color-corundum) 0%, var(--d2l-color-tungsten) 100%);
--d2l-color-trancition: linear-gradient(to bottom, #fff 0%, var(--d2l-color-regolith) 100%);
--d2l-color-trixon: linear-gradient(to bottom, var(--d2l-color-regolith) 0%, var(--d2l-color-sylvite) 100%);
--d2l-color-azurite: var(--d2l-color-zircon-plus-1);
--d2l-color-celestuba: var(--d2l-color-celestine-minus-1);
--d2l-color-gravah: var(--d2l-color-amethyst-minus-1);
--d2l-color-saphirella: var(--d2l-color-zircon-plus-1);
--d2l-color-celestine-light-1: var(--d2l-color-celestine-plus-2);
--d2l-color-celestine-light-2: var(--d2l-color-celestine-plus-1);
--d2l-color-olivine-light-1: var(--d2l-color-olivine-plus-1);
--d2l-color-olivine-light-2: var(--d2l-color-olivine);
--d2l-color-zircon-light-1: var(--d2l-color-zircon-plus-2);
--d2l-color-zircon-light-2: var(--d2l-color-zircon-plus-2);
}
</style>
</custom-style>`;
document.head.appendChild($_documentContainer.content);