diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-07-27 15:44:29 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-07-27 15:44:29 +0200 |
| commit | 2aad507650fa3263ef81be759ab0531b43e5b7cc (patch) | |
| tree | b8299f962ef0e3342cb8978f5e0a4f57a8ee1b30 /animism-align/frontend/app/constants.js | |
| parent | eee3193ecf604eaed30505128b2a1f7bb875d44a (diff) | |
annotation form for curtain events. refactor utilities
Diffstat (limited to 'animism-align/frontend/app/constants.js')
| -rw-r--r-- | animism-align/frontend/app/constants.js | 13 |
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, +})) + |
