aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/services/theme_data/theme_data.service.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/services/theme_data/theme_data.service.js b/src/services/theme_data/theme_data.service.js
index 5e49fa17..bbabd175 100644
--- a/src/services/theme_data/theme_data.service.js
+++ b/src/services/theme_data/theme_data.service.js
@@ -673,19 +673,6 @@ export const SLOT_ORDERED = topoSort(
)
/**
- * Dictionary where keys are color slots and values are opacity associated
- * with them
- */
-export const SLOTS_OPACITIES_DICT = Object.entries(SLOT_INHERITANCE).reduce((acc, [k, v]) => {
- const opacity = getOpacitySlot(k, SLOT_INHERITANCE, getDependencies)
- if (opacity) {
- return { ...acc, [k]: opacity }
- } else {
- return acc
- }
-}, {})
-
-/**
* All opacity slots used in color slots, their default values and affected
* color slots.
*/