summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/constants.js
diff options
context:
space:
mode:
Diffstat (limited to 'animism-align/frontend/app/constants.js')
-rw-r--r--animism-align/frontend/app/constants.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/animism-align/frontend/app/constants.js b/animism-align/frontend/app/constants.js
index fc7e591..b7757d0 100644
--- a/animism-align/frontend/app/constants.js
+++ b/animism-align/frontend/app/constants.js
@@ -42,3 +42,16 @@ export const MEDIA_TYPES = new Set([
'image', 'gallery', 'vitrine',
'video',
])
+
+export const CURTAIN_COLORS = [
+ { label: 'white', backgroundColor: '#ffffff', textColor: '#000000' },
+ { label: 'dark blue', backgroundColor: '#1a1f33', textColor: '#ffffff' },
+ { label: 'dark gray', backgroundColor: '#222222', textColor: '#ffffff' },
+ { label: 'black', backgroundColor: '#000000', textColor: '#ffffff' },
+]
+
+export const CURTAIN_COLOR_SELECT_OPTIONS = CURTAIN_COLORS.map(color => ({
+ label: color.label,
+ name: color.label,
+}))
+