Compare commits

..

No commits in common. "f354de14ccef067a5d4e7c9be15b93fc56d61c72" and "322cd6d5e0602f21043378b2b58a86264b238fd3" have entirely different histories.

15 changed files with 554 additions and 716 deletions

View file

@ -351,12 +351,7 @@ const afterStoreSetup = async ({ store, i18n }) => {
store.dispatch('setInstanceOption', { name: 'server', value: server }) store.dispatch('setInstanceOption', { name: 'server', value: server })
await setConfig({ store }) await setConfig({ store })
document.querySelector('#status').textContent = i18n.global.t('splash.theme') await store.dispatch('applyTheme', { recompile: false })
try {
await store.dispatch('applyTheme').catch((e) => { console.error('Error setting theme', e) })
} catch (e) {
return Promise.reject(e)
}
applyConfig(store.state.config) applyConfig(store.state.config)

View file

@ -1,115 +0,0 @@
<template>
<div
class="SelectMotion btn-group"
>
<button
class="btn button-default"
:disabled="disabled || shadowsAreNull"
@click="add"
>
<FAIcon
fixed-width
icon="plus"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !moveUpValid"
:class="{ disabled: disabled || !moveUpValid }"
@click="moveUp"
>
<FAIcon
fixed-width
icon="chevron-up"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !moveDnValid"
:class="{ disabled: disabled || !moveDnValid }"
@click="moveDn"
>
<FAIcon
fixed-width
icon="chevron-down"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
@click="del"
>
<FAIcon
fixed-width
icon="times"
/>
</button>
</div>
</template>
<script setup>
import { computed, defineEmits, defineProps } from 'vue'
const props = defineProps(['modelValue', 'selectedId', 'disabled', 'getAddValue'])
const emit = defineEmits(['update:modelValue', 'update:selectedId'])
const moveUpValid = computed(() => {
return props.selectedId > 0
})
const present = computed(() => props.modelValue[props.selectedId] != null)
const moveUp = () => {
const newModel = [...props.modelValue]
const movable = newModel.splice(props.selectedId, 1)[0]
newModel.splice(props.selectedId - 1, 0, movable)
emit('update:modelValue', newModel)
emit('update:selectedId', props.selectedId - 1)
}
const moveDnValid = computed(() => {
return props.selectedId < props.modelValue.length - 1
})
const moveDn = () => {
const newModel = [...props.modelValue]
const movable = newModel.splice(props.selectedId.value, 1)[0]
newModel.splice(props.selectedId + 1, 0, movable)
emit('update:modelValue', newModel)
emit('update:selectedId', props.selectedId + 1)
}
const add = () => {
const newModel = [...props.modelValue]
newModel.push(props.getAddValue())
console.log(newModel)
emit('update:modelValue', newModel)
emit('update:selectedId', Math.max(newModel.length - 1, 0))
}
const del = () => {
const newModel = [...props.modelValue]
newModel.splice(props.selectedId, 1)
emit('update:modelValue', newModel)
emit('update:selectedId', newModel.length === 0 ? undefined : Math.max(props.selectedId - 1, 0))
}
</script>
<style lang="scss">
.SelectMotion {
flex: 0 0 auto;
display: grid;
grid-auto-columns: 1fr;
grid-auto-flow: column;
margin-top: 0.25em;
.button-default {
margin: 0;
padding: 0;
}
}
</style>

View file

@ -34,7 +34,7 @@ const AppearanceTab = {
return { return {
availableStyles: [], availableStyles: [],
availablePalettes: [], availablePalettes: [],
fileImporter: newImporter({ themeImporter: newImporter({
accept: '.json, .piss', accept: '.json, .piss',
validator: this.importValidator, validator: this.importValidator,
onImport: this.onImport, onImport: this.onImport,
@ -179,10 +179,6 @@ const AppearanceTab = {
this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val }) this.$store.dispatch('setOption', { name: 'interfaceLanguage', value: val })
} }
}, },
customThemeVersion () {
const { themeVersion } = this.$store.state.interface
return themeVersion
},
isCustomThemeUsed () { isCustomThemeUsed () {
const { theme } = this.mergedConfig const { theme } = this.mergedConfig
return theme === 'custom' return theme === 'custom'
@ -206,8 +202,8 @@ const AppearanceTab = {
} }
}) })
}, },
importFile () { importTheme () {
this.fileImporter.importData() this.themeImporter.importData()
}, },
onImport (parsed, filename) { onImport (parsed, filename) {
if (filename.endsWith('.json')) { if (filename.endsWith('.json')) {
@ -238,18 +234,14 @@ const AppearanceTab = {
const { palette } = this.mergedConfig const { palette } = this.mergedConfig
return key === palette return key === palette
}, },
setStyle (name) { importStyle () {
this.$store.dispatch('resetThemeV2')
this.$store.dispatch('setTheme', name)
this.$store.dispatch('applyTheme')
}, },
setTheme (name) { setTheme (name) {
this.$store.dispatch('resetThemeV3')
this.$store.dispatch('setTheme', name) this.$store.dispatch('setTheme', name)
this.$store.dispatch('applyTheme') this.$store.dispatch('applyTheme')
}, },
setPalette (name) { setPalette (name) {
this.$store.dispatch('resetThemeV2')
this.$store.dispatch('setPalette', name) this.$store.dispatch('setPalette', name)
this.$store.dispatch('applyTheme') this.$store.dispatch('applyTheme')
}, },

View file

@ -24,10 +24,6 @@
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
grid-gap: 0.5em; grid-gap: 0.5em;
.unsupported-theme-v2 {
grid-column: 1 / span 2;
}
} }
.palette-entry { .palette-entry {

View file

@ -7,7 +7,7 @@
<h2>{{ $t('settings.theme') }}</h2> <h2>{{ $t('settings.theme') }}</h2>
<button <button
class="btn button-default" class="btn button-default"
@click="importFile" @click="importTheme"
> >
<FAIcon icon="folder-open" /> <FAIcon icon="folder-open" />
{{ $t('settings.style.themes3.editor.load_style') }} {{ $t('settings.style.themes3.editor.load_style') }}
@ -30,7 +30,7 @@
v-html="previewTheme('stock')" v-html="previewTheme('stock')"
/> />
<!-- eslint-enable vue/no-v-text-v-html-on-component --> <!-- eslint-enable vue/no-v-text-v-html-on-component -->
<preview id="theme-preview-stock" /> <preview />
<h4 class="theme-name"> <h4 class="theme-name">
{{ $t('settings.style.stock_theme_used') }} {{ $t('settings.style.stock_theme_used') }}
<span class="alert neutral version">v3</span> <span class="alert neutral version">v3</span>
@ -71,30 +71,23 @@
</ul> </ul>
<h3>{{ $t('settings.style.themes3.palette.label') }}</h3> <h3>{{ $t('settings.style.themes3.palette.label') }}</h3>
<div class="palettes"> <div class="palettes">
<template v-if="customThemeVersion === 'v3'"> <button
<button v-for="p in availablePalettes"
v-for="p in availablePalettes" :key="p.name"
:key="p.name" class="btn button-default palette-entry"
class="btn button-default palette-entry" :class="{ toggled: isPaletteActive(p.key) }"
:class="{ toggled: isPaletteActive(p.key) }" @click="() => setPalette(p.key)"
@click="() => setPalette(p.key)" >
> <label>
<label> {{ p.name }}
{{ p.name }} </label>
</label> <span
<span v-for="c in palettesKeys"
v-for="c in palettesKeys" :key="c"
:key="c" class="palette-square"
class="palette-square" :style="{ backgroundColor: p[c], border: '1px solid ' + (p[c] ?? 'var(--text)') }"
:style="{ backgroundColor: p[c], border: '1px solid ' + (p[c] ?? 'var(--text)') }" />
/> </button>
</button>
</template>
<template v-else-if="customThemeVersion === 'v2'">
<div class="alert neutral theme-notice unsupported-theme-v2">
{{ $t('settings.style.themes3.palette.v2_unsupported') }}
</div>
</template>
</div> </div>
</div> </div>
<div class="alert neutral theme-notice"> <div class="alert neutral theme-notice">

View file

@ -219,13 +219,9 @@ export default {
return selectors.map(x => x.substring(1)).join('') return selectors.map(x => x.substring(1)).join('')
}) })
const previewCss = computed(() => { const previewCss = computed(() => {
try { const scoped = getCssRules(previewRules)
const scoped = getCssRules(previewRules).map(simulatePseudoSelectors) .map(simulatePseudoSelectors)
return scoped.join('\n') return scoped.join('\n')
} catch (e) {
console.error('Invalid ruleset', e)
return null
}
}) })
// ### Rules stuff aka meat and potatoes // ### Rules stuff aka meat and potatoes
@ -419,22 +415,17 @@ export default {
}) })
const updatePreview = () => { const updatePreview = () => {
try { previewRules.splice(0, previewRules.length)
const rules = init({ previewRules.push(...init({
inputRuleset: editorFriendlyToOriginal.value, inputRuleset: editorFriendlyToOriginal.value,
initialStaticVars: { initialStaticVars: {
...palette.value ...palette.value
}, },
ultimateBackgroundColor: '#000000', ultimateBackgroundColor: '#000000',
rootComponentName: selectedComponentName.value, rootComponentName: selectedComponentName.value,
editMode: true, editMode: true,
debug: true debug: true
}).eager }).eager)
previewRules.splice(0, previewRules.length)
previewRules.push(...rules)
} catch (e) {
console.error('Could not compile preview theme', e)
}
} }
const updateSelectedComponent = () => { const updateSelectedComponent = () => {

View file

@ -51,241 +51,231 @@
</li> </li>
</ul> </ul>
</div> </div>
<tab-switcher> <div class="setting-item component-editor">
<div class="component-selector">
<label for="component-selector">
{{ $t('settings.style.themes3.editor.component_selector') }}
{{ ' ' }}
</label>
<Select
id="component-selector"
v-model="selectedComponentKey"
>
<option
v-for="key in componentKeys"
:key="'component-' + key"
:value="key"
>
{{ fallbackI18n($t(getFriendlyNamePath(componentsMap.get(key).name)), componentsMap.get(key).name) }}
</option>
</Select>
</div>
<div <div
key="component" v-if="selectedComponentVariantsAll.length > 1"
class="setting-item component-editor" class="variant-selector"
:label="$t('settings.style.themes3.editor.component_tab')"
> >
<div class="component-selector"> <label for="variant-selector">
<label for="component-selector"> {{ $t('settings.style.themes3.editor.variant_selector') }}
{{ $t('settings.style.themes3.editor.component_selector') }} </label>
{{ ' ' }} <Select
</label> v-model="selectedVariant"
<Select
id="component-selector"
v-model="selectedComponentKey"
>
<option
v-for="key in componentKeys"
:key="'component-' + key"
:value="key"
>
{{ fallbackI18n($t(getFriendlyNamePath(componentsMap.get(key).name)), componentsMap.get(key).name) }}
</option>
</Select>
</div>
<div
v-if="selectedComponentVariantsAll.length > 1"
class="variant-selector"
> >
<label for="variant-selector"> <option
{{ $t('settings.style.themes3.editor.variant_selector') }} v-for="variant in selectedComponentVariantsAll"
</label> :key="'component-variant-' + variant"
<Select :value="variant"
v-model="selectedVariant"
> >
<option {{ fallbackI18n($t(getVariantPath(selectedComponentName, variant)), variant) }}
v-for="variant in selectedComponentVariantsAll" </option>
:key="'component-variant-' + variant" </Select>
:value="variant" </div>
> <div
{{ fallbackI18n($t(getVariantPath(selectedComponentName, variant)), variant) }} v-if="selectedComponentStates.length > 0"
</option> class="state-selector"
</Select> >
</div> <label>
<div {{ $t('settings.style.themes3.editor.states_selector') }}
v-if="selectedComponentStates.length > 0" </label>
class="state-selector" <ul
class="state-selector-list"
> >
<label> <li
{{ $t('settings.style.themes3.editor.states_selector') }} v-for="state in selectedComponentStates"
</label> :key="'component-state-' + state"
<ul
class="state-selector-list"
>
<li
v-for="state in selectedComponentStates"
:key="'component-state-' + state"
>
<Checkbox
:value="selectedState.has(state)"
@update:modelValue="(v) => updateSelectedStates(state, v)"
>
{{ fallbackI18n($t(getStatePath(selectedComponentName, state)), state) }}
</Checkbox>
</li>
</ul>
</div>
<div class="preview-container">
<!-- eslint-disable vue/no-v-html vue/no-v-text-v-html-on-component -->
<component
:is="'style'"
v-html="previewCss"
/>
<!-- eslint-enable vue/no-v-html vue/no-v-text-v-html-on-component -->
<ComponentPreview
class="component-preview"
:show-text="componentHas('Text')"
:shadow-control="isShadowTabOpen"
:preview-class="previewClass"
:preview-style="editorHintStyle"
:disabled="!editedSubShadow && typeof editedShadow !== 'string'"
:shadow="editedSubShadow"
@update:shadow="({ axis, value }) => updateSubShadow(axis, value)"
/>
</div>
<tab-switcher
ref="tabSwitcher"
class="component-settings"
:on-switch="onTabSwitch"
>
<div
key="main"
class="editor-tab"
:label="$t('settings.style.themes3.editor.main_tab')"
>
<ColorInput
v-model="editedBackgroundColor"
:disabled="!isBackgroundColorPresent"
:label="$t('settings.style.themes3.editor.background')"
/>
<Tooltip :text="$t('settings.style.themes3.editor.include_in_rule')">
<Checkbox v-model="isBackgroundColorPresent" />
</Tooltip>
<OpacityInput
v-model="editedOpacity"
:disabled="!isOpacityPresent"
:label="$t('settings.style.themes3.editor.opacity')"
/>
<Tooltip :text="$t('settings.style.themes3.editor.include_in_rule')">
<Checkbox v-model="isOpacityPresent" />
</Tooltip>
<ColorInput
v-if="componentHas('Text')"
v-model="editedTextColor"
:label="$t('settings.style.themes3.editor.text_color')"
:disabled="!isTextColorPresent"
/>
<Tooltip
v-if="componentHas('Text')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isTextColorPresent" />
</Tooltip>
<div class="style-control suboption">
<label
for="textAuto"
class="label"
:class="{ faint: !isTextAutoPresent }"
>
{{ $t('settings.style.themes3.editor.text_auto.label') }}
</label>
<Select
id="textAuto"
v-model="editedTextAuto"
:disabled="!isTextAutoPresent"
>
<option value="no-preserve">
{{ $t('settings.style.themes3.editor.text_auto.no-preserve') }}
</option>
<option value="no-auto">
{{ $t('settings.style.themes3.editor.text_auto.no-auto') }}
</option>
<option value="preserve">
{{ $t('settings.style.themes3.editor.text_auto.preserve') }}
</option>
</Select>
</div>
<Tooltip
v-if="componentHas('Text')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isTextAutoPresent" />
</Tooltip>
<div>
<ContrastRatio :contrast="getContrast(editedBackgroundColor, editedTextColor)" />
</div>
<div>
<!-- spacer for missing checkbox -->
</div>
<ColorInput
v-if="componentHas('Link')"
v-model="editedLinkColor"
:label="$t('settings.style.themes3.editor.link_color')"
:disabled="!isLinkColorPresent"
/>
<Tooltip
v-if="componentHas('Link')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isLinkColorPresent" />
</Tooltip>
<ColorInput
v-if="componentHas('Icon')"
v-model="editedIconColor"
:label="$t('settings.style.themes3.editor.icon_color')"
:disabled="!isIconColorPresent"
/>
<Tooltip
v-if="componentHas('Icon')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isIconColorPresent" />
</Tooltip>
</div>
<div
key="shadow"
class="editor-tab shadow-tab"
:label="$t('settings.style.themes3.editor.shadows_tab')"
> >
<Checkbox <Checkbox
v-model="isShadowPresent" :value="selectedState.has(state)"
class="style-control" @update:modelValue="(v) => updateSelectedStates(state, v)"
> >
{{ $t('settings.style.themes3.editor.include_in_rule') }} {{ fallbackI18n($t(getStatePath(selectedComponentName, state)), state) }}
</checkbox> </Checkbox>
<ShadowControl </li>
v-model="editedShadow" </ul>
:disabled="!isShadowPresent"
:no-preview="true"
:separate-inset="shadowSelected === 'avatar' || shadowSelected === 'avatarStatus'"
@subShadowSelected="onSubShadow"
/>
</div>
</tab-switcher>
</div> </div>
<div <div class="preview-container">
key="palette" <!-- eslint-disable vue/no-v-html vue/no-v-text-v-html-on-component -->
:label="$t('settings.style.themes3.editor.palette_tab')" <component
class="setting-item palette-editor" :is="'style'"
v-html="previewCss"
/>
<!-- eslint-enable vue/no-v-html vue/no-v-text-v-html-on-component -->
<ComponentPreview
class="component-preview"
:show-text="componentHas('Text')"
:shadow-control="isShadowTabOpen"
:preview-class="previewClass"
:preview-style="editorHintStyle"
:disabled="!editedSubShadow"
:shadow="editedSubShadow"
@update:shadow="({ axis, value }) => updateSubShadow(axis, value)"
/>
</div>
<tab-switcher
ref="tabSwitcher"
class="component-settings"
:on-switch="onTabSwitch"
> >
<div class="label"> <div
<label for="palette-selector"> key="main"
{{ $t('settings.style.themes3.palette.label') }} class="editor-tab"
{{ ' ' }} :label="$t('settings.style.themes3.editor.main_tab')"
</label> >
<Select <ColorInput
id="palette-selector" v-model="editedBackgroundColor"
v-model="editedPalette" :disabled="!isBackgroundColorPresent"
:label="$t('settings.style.themes3.editor.background')"
/>
<Tooltip :text="$t('settings.style.themes3.editor.include_in_rule')">
<Checkbox v-model="isBackgroundColorPresent" />
</Tooltip>
<OpacityInput
v-model="editedOpacity"
:disabled="!isOpacityPresent"
:label="$t('settings.style.themes3.editor.opacity')"
/>
<Tooltip :text="$t('settings.style.themes3.editor.include_in_rule')">
<Checkbox v-model="isOpacityPresent" />
</Tooltip>
<ColorInput
v-if="componentHas('Text')"
v-model="editedTextColor"
:label="$t('settings.style.themes3.editor.text_color')"
:disabled="!isTextColorPresent"
/>
<Tooltip
v-if="componentHas('Text')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
> >
<option <Checkbox v-model="isTextColorPresent" />
key="dark" </Tooltip>
value="dark" <div class="style-control suboption">
<label
for="textAuto"
class="label"
:class="{ faint: !isTextAutoPresent }"
> >
{{ $t('settings.style.themes3.palette.dark') }} {{ $t('settings.style.themes3.editor.text_auto.label') }}
</option> </label>
<option <Select
key="light" id="textAuto"
value="light" v-model="editedTextAuto"
:disabled="!isTextAutoPresent"
> >
{{ $t('settings.style.themes3.palette.light') }} <option value="no-preserve">
</option> {{ $t('settings.style.themes3.editor.text_auto.no-preserve') }}
</Select> </option>
<option value="no-auto">
{{ $t('settings.style.themes3.editor.text_auto.no-auto') }}
</option>
<option value="preserve">
{{ $t('settings.style.themes3.editor.text_auto.preserve') }}
</option>
</Select>
</div>
<Tooltip
v-if="componentHas('Text')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isTextAutoPresent" />
</Tooltip>
<div>
<ContrastRatio :contrast="getContrast(editedBackgroundColor, editedTextColor)" />
</div>
<div>
<!-- spacer for missing checkbox -->
</div>
<ColorInput
v-if="componentHas('Link')"
v-model="editedLinkColor"
:label="$t('settings.style.themes3.editor.link_color')"
:disabled="!isLinkColorPresent"
/>
<Tooltip
v-if="componentHas('Link')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isLinkColorPresent" />
</Tooltip>
<ColorInput
v-if="componentHas('Icon')"
v-model="editedIconColor"
:label="$t('settings.style.themes3.editor.icon_color')"
:disabled="!isIconColorPresent"
/>
<Tooltip
v-if="componentHas('Icon')"
:text="$t('settings.style.themes3.editor.include_in_rule')"
>
<Checkbox v-model="isIconColorPresent" />
</Tooltip>
</div> </div>
<PaletteEditor v-model="palette" /> <div
key="shadow"
class="editor-tab shadow-tab"
:label="$t('settings.style.themes3.editor.shadows_tab')"
>
<Checkbox
v-model="isShadowPresent"
class="style-control"
>
{{ $t('settings.style.themes3.editor.include_in_rule') }}
</checkbox>
<ShadowControl
v-model="editedShadow"
:disabled="!isShadowPresent"
:no-preview="true"
:separate-inset="shadowSelected === 'avatar' || shadowSelected === 'avatarStatus'"
@subShadowSelected="onSubShadow"
/>
</div>
</tab-switcher>
</div>
<div class="setting-item palette-editor">
<div class="label">
<label for="palette-selector">
{{ $t('settings.style.themes3.palette.label') }}
{{ ' ' }}
</label>
<Select
id="palette-selector"
v-model="editedPalette"
>
<option
key="dark"
value="dark"
>
{{ $t('settings.style.themes3.palette.dark') }}
</option>
<option
key="light"
value="light"
>
{{ $t('settings.style.themes3.palette.light') }}
</option>
</Select>
</div> </div>
</tab-switcher> <PaletteEditor v-model="palette" />
</div>
</div> </div>
</template> </template>

View file

@ -1,7 +1,6 @@
import ColorInput from 'src/components/color_input/color_input.vue' import ColorInput from 'src/components/color_input/color_input.vue'
import OpacityInput from 'src/components/opacity_input/opacity_input.vue' import OpacityInput from 'src/components/opacity_input/opacity_input.vue'
import Select from 'src/components/select/select.vue' import Select from 'src/components/select/select.vue'
import SelectMotion from 'src/components/select/select_motion.vue'
import Checkbox from 'src/components/checkbox/checkbox.vue' import Checkbox from 'src/components/checkbox/checkbox.vue'
import Popover from 'src/components/popover/popover.vue' import Popover from 'src/components/popover/popover.vue'
import ComponentPreview from 'src/components/component_preview/component_preview.vue' import ComponentPreview from 'src/components/component_preview/component_preview.vue'
@ -22,22 +21,16 @@ library.add(
faPlus faPlus
) )
const toModel = (input) => { const toModel = (object = {}) => ({
if (typeof input === 'object') { x: 0,
return { y: 0,
x: 0, blur: 0,
y: 0, spread: 0,
blur: 0, inset: false,
spread: 0, color: '#000000',
inset: false, alpha: 1,
color: '#000000', ...object
alpha: 1, })
...input
}
} else if (typeof input === 'string') {
return input
}
}
export default { export default {
props: [ props: [
@ -55,34 +48,20 @@ export default {
ColorInput, ColorInput,
OpacityInput, OpacityInput,
Select, Select,
SelectMotion,
Checkbox, Checkbox,
Popover, Popover,
ComponentPreview ComponentPreview
}, },
beforeUpdate () {
this.cValue = (this.modelValue ?? this.fallback ?? []).map(toModel)
},
computed: { computed: {
selectedType: { selected () {
get () { const selected = this.cValue[this.selectedId]
return typeof this.selected if (selected) {
}, return { ...selected }
set (newType) {
this.selected = toModel(newType === 'object' ? {} : '')
}
},
selected: {
get () {
const selected = this.cValue[this.selectedId]
if (selected && typeof selected === 'object') {
return { ...selected }
} else if (typeof selected === 'string') {
return selected
}
return null
},
set (value) {
this.cValue[this.selectedId] = toModel(value)
this.$emit('update:modelValue', this.cValue)
} }
return null
}, },
present () { present () {
return this.selected != null && !this.usingFallback return this.selected != null && !this.usingFallback
@ -93,55 +72,61 @@ export default {
currentFallback () { currentFallback () {
return this.fallback?.[this.selectedId] return this.fallback?.[this.selectedId]
}, },
moveUpValid () {
return this.selectedId > 0
},
moveDnValid () {
return this.selectedId < this.cValue.length - 1
},
usingFallback () { usingFallback () {
return this.modelValue == null return this.modelValue == null
}, },
style () { style () {
try { if (this.separateInset) {
if (this.separateInset) {
return {
filter: getCssShadowFilter(this.cValue),
boxShadow: getCssShadow(this.cValue, true)
}
}
return { return {
boxShadow: getCssShadow(this.cValue) filter: getCssShadowFilter(this.cValue),
} boxShadow: getCssShadow(this.cValue, true)
} catch (e) {
return {
border: '1px solid red'
} }
} }
return {
boxShadow: getCssShadow(this.cValue)
}
} }
}, },
watch: { watch: {
modelValue (value) {
if (!value) this.cValue = (this.modelValue ?? this.fallback ?? []).map(toModel)
},
selected (value) { selected (value) {
this.$emit('subShadowSelected', this.selectedId) this.$emit('subShadowSelected', this.selectedId)
} }
}, },
methods: { methods: {
getNewSubshadow () {
return toModel(this.selected)
},
onSelectChange (id) {
this.selectedId = id
},
getSubshadowLabel (shadow, index) {
if (typeof shadow === 'object') {
return shadow?.name ?? this.$t('settings.style.shadows.shadow_id', { value: index })
} else if (typeof shadow === 'string') {
return shadow || this.$t('settings.style.shadows.empty_expression')
}
},
updateProperty: throttle(function (prop, value) { updateProperty: throttle(function (prop, value) {
this.cValue[this.selectedId][prop] = value this.cValue[this.selectedId][prop] = value
if (prop === 'inset' && value === false && this.separateInset) { if (prop === 'inset' && value === false && this.separateInset) {
this.cValue[this.selectedId].spread = 0 this.cValue[this.selectedId].spread = 0
} }
this.$emit('update:modelValue', this.cValue) this.$emit('update:modelValue', this.cValue)
}, 100) }, 100),
add () {
this.cValue.push(toModel(this.selected))
this.selectedId = Math.max(this.cValue.length - 1, 0)
this.$emit('update:modelValue', this.cValue)
},
del () {
this.cValue.splice(this.selectedId, 1)
this.selectedId = this.cValue.length === 0 ? undefined : Math.max(this.selectedId - 1, 0)
this.$emit('update:modelValue', this.cValue)
},
moveUp () {
const movable = this.cValue.splice(this.selectedId, 1)[0]
this.cValue.splice(this.selectedId - 1, 0, movable)
this.selectedId -= 1
this.$emit('update:modelValue', this.cValue)
},
moveDn () {
const movable = this.cValue.splice(this.selectedId, 1)[0]
this.cValue.splice(this.selectedId + 1, 0, movable)
this.selectedId += 1
this.$emit('update:modelValue', this.cValue)
}
} }
} }

View file

@ -4,7 +4,6 @@
justify-content: stretch; justify-content: stretch;
grid-gap: 0.25em; grid-gap: 0.25em;
margin-bottom: 1em; margin-bottom: 1em;
width: 100%;
.shadow-switcher { .shadow-switcher {
order: 1; order: 1;
@ -17,6 +16,19 @@
.shadow-list { .shadow-list {
flex: 1 0 auto; flex: 1 0 auto;
} }
.arrange-buttons {
flex: 0 0 auto;
display: grid;
grid-auto-columns: 1fr;
grid-auto-flow: column;
margin-top: 0.25em;
.button-default {
margin: 0;
padding: 0;
}
}
} }
.shadow-tweak { .shadow-tweak {
@ -25,9 +37,6 @@
min-width: 10em; min-width: 10em;
margin-left: 0.125em; margin-left: 0.125em;
margin-right: 0.125em; margin-right: 0.125em;
display: grid;
grid-template-rows: auto 1fr;
grid-gap: 0.25em;
/* hack */ /* hack */
.input-boolean { .input-boolean {
@ -43,11 +52,6 @@
flex: 1 0 5em; flex: 1 0 5em;
} }
.shadow-expression {
width: 100%;
height: 100%;
}
.id-control { .id-control {
align-items: stretch; align-items: stretch;
@ -96,5 +100,6 @@
} }
.inset-tooltip { .inset-tooltip {
padding: 0.5em;
max-width: 30em; max-width: 30em;
} }

View file

@ -8,6 +8,7 @@
class="shadow-preview" class="shadow-preview"
:shadow-control="true" :shadow-control="true"
:shadow="selected" :shadow="selected"
:preview-style="style"
:disabled="disabled || !present" :disabled="disabled || !present"
@update:shadow="({ axis, value }) => updateProperty(axis, value)" @update:shadow="({ axis, value }) => updateProperty(axis, value)"
/> />
@ -17,7 +18,7 @@
v-model="selectedId" v-model="selectedId"
class="shadow-list" class="shadow-list"
size="10" size="10"
:disabled="disabled || shadowsAreNull" :disabled="shadowsAreNull"
> >
<option <option
v-for="(shadow, index) in cValue" v-for="(shadow, index) in cValue"
@ -25,208 +26,227 @@
:value="index" :value="index"
:class="{ '-active': index === Number(selectedId) }" :class="{ '-active': index === Number(selectedId) }"
> >
{{ getSubshadowLabel(shadow, index) }} {{ shadow?.name ?? $t('settings.style.shadows.shadow_id', { value: index }) }}
</option> </option>
</Select> </Select>
<SelectMotion <div
v-model="cValue" class="id-control btn-group arrange-buttons"
:selected-id="selectedId" >
:get-add-value="getNewSubshadow" <button
:disabled="disabled" class="btn button-default"
@update:selectedId="onSelectChange" :disabled="disabled || shadowsAreNull"
/> @click="add"
>
<FAIcon
fixed-width
icon="plus"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !moveUpValid"
:class="{ disabled: disabled || !moveUpValid }"
@click="moveUp"
>
<FAIcon
fixed-width
icon="chevron-up"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !moveDnValid"
:class="{ disabled: disabled || !moveDnValid }"
@click="moveDn"
>
<FAIcon
fixed-width
icon="chevron-down"
/>
</button>
<button
class="btn button-default"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
@click="del"
>
<FAIcon
fixed-width
icon="times"
/>
</button>
</div>
</div> </div>
<div class="shadow-tweak"> <div class="shadow-tweak">
<Select <div
v-model="selectedType" :class="{ disabled: disabled || !present }"
:disabled="disabled || !present" class="name-control style-control"
> >
<option value="object"> <label
{{ $t('settings.style.shadows.raw') }} for="name"
</option> class="label"
<option value="string">
{{ $t('settings.style.shadows.expression') }}
</option>
</Select>
<template v-if="selectedType === 'string'">
<textarea
v-model="selected"
class="input shadow-expression"
:disabled="disabled || shadowsAreNull"
:class="{disabled: disabled || shadowsAreNull}"
/>
</template>
<template v-else-if="selectedType === 'object'">
<div
:class="{ disabled: disabled || !present }"
class="name-control style-control"
>
<label
for="name"
class="label"
:class="{ faint: disabled || !present }"
>
{{ $t('settings.style.shadows.name') }}
</label>
<input
id="name"
:value="selected?.name"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
name="name"
class="input input-string"
@input="e => updateProperty('name', e.target.value)"
>
</div>
<div
:disabled="disabled || !present"
class="inset-control style-control"
>
<Checkbox
id="inset"
:value="selected?.inset"
:disabled="disabled || !present"
name="inset"
class="input-inset input-boolean"
@input="e => updateProperty('inset', e.target.checked)"
>
<template #before>
{{ $t('settings.style.shadows.inset') }}
</template>
</Checkbox>
</div>
<div
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
class="blur-control style-control"
>
<label
for="blur"
class="label"
:class="{ faint: disabled || !present }"
>
{{ $t('settings.style.shadows.blur') }}
</label>
<input
id="blur"
:value="selected?.blur"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
name="blur"
class="input input-range"
type="range"
max="20"
min="0"
@input="e => updateProperty('blur', e.target.value)"
>
<input
:value="selected?.blur"
class="input input-number -small"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
type="number"
min="0"
@input="e => updateProperty('blur', e.target.value)"
>
</div>
<div
class="spread-control style-control"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
>
<label
for="spread"
class="label"
:class="{ faint: disabled || !present || (separateInset && !selected?.inset) }"
>
{{ $t('settings.style.shadows.spread') }}
</label>
<input
id="spread"
:value="selected?.spread"
:disabled="disabled || !present || (separateInset && !selected?.inset)"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
name="spread"
class="input input-range"
type="range"
max="20"
min="-20"
@input="e => updateProperty('spread', e.target.value)"
>
<input
:value="selected?.spread"
class="input input-number -small"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
:disabled="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
type="number"
@input="e => updateProperty('spread', e.target.value)"
>
</div>
<ColorInput
:model-value="selected?.color"
:disabled="disabled || !present"
:label="$t('settings.style.common.color')"
:fallback="currentFallback?.color"
:show-optional-tickbox="false"
name="shadow"
@update:modelValue="e => updateProperty('color', e)"
/>
<OpacityInput
:model-value="selected?.alpha"
:disabled="disabled || !present"
@update:modelValue="e => updateProperty('alpha', e)"
/>
<i18n-t
scope="global"
keypath="settings.style.shadows.hintV3"
:class="{ faint: disabled || !present }" :class="{ faint: disabled || !present }"
tag="p"
> >
<code>--variable,mod</code> {{ $t('settings.style.shadows.name') }}
</i18n-t> </label>
<Popover <input
v-if="separateInset" id="name"
trigger="hover" :value="selected?.name"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
name="name"
class="input input-string"
@input="e => updateProperty('name', e.target.value)"
> >
<template #trigger> </div>
<div <div
class="inset-alert alert warning" :disabled="disabled || !present"
class="inset-control style-control"
>
<Checkbox
id="inset"
:value="selected?.inset"
:disabled="disabled || !present"
name="inset"
class="input-inset input-boolean"
@input="e => updateProperty('inset', e.target.checked)"
>
<template #before>
{{ $t('settings.style.shadows.inset') }}
</template>
</Checkbox>
</div>
<div
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
class="blur-control style-control"
>
<label
for="blur"
class="label"
:class="{ faint: disabled || !present }"
>
{{ $t('settings.style.shadows.blur') }}
</label>
<input
id="blur"
:value="selected?.blur"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
name="blur"
class="input input-range"
type="range"
max="20"
min="0"
@input="e => updateProperty('blur', e.target.value)"
>
<input
:value="selected?.blur"
class="input input-number -small"
:disabled="disabled || !present"
:class="{ disabled: disabled || !present }"
type="number"
min="0"
@input="e => updateProperty('blur', e.target.value)"
>
</div>
<div
class="spread-control style-control"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
>
<label
for="spread"
class="label"
:class="{ faint: disabled || !present || (separateInset && !selected?.inset) }"
>
{{ $t('settings.style.shadows.spread') }}
</label>
<input
id="spread"
:value="selected?.spread"
:disabled="disabled || !present || (separateInset && !selected?.inset)"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
name="spread"
class="input input-range"
type="range"
max="20"
min="-20"
@input="e => updateProperty('spread', e.target.value)"
>
<input
:value="selected?.spread"
class="input input-number -small"
:class="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
:disabled="{ disabled: disabled || !present || (separateInset && !selected?.inset) }"
type="number"
@input="e => updateProperty('spread', e.target.value)"
>
</div>
<ColorInput
:model-value="selected?.color"
:disabled="disabled || !present"
:label="$t('settings.style.common.color')"
:fallback="currentFallback?.color"
:show-optional-tickbox="false"
name="shadow"
@update:modelValue="e => updateProperty('color', e)"
/>
<OpacityInput
:model-value="selected?.alpha"
:disabled="disabled || !present"
@update:modelValue="e => updateProperty('alpha', e)"
/>
<i18n-t
scope="global"
keypath="settings.style.shadows.hintV3"
:class="{ faint: disabled || !present }"
tag="p"
>
<code>--variable,mod</code>
</i18n-t>
<Popover
v-if="separateInset"
trigger="hover"
>
<template #trigger>
<div
class="inset-alert alert warning"
>
<FAIcon icon="exclamation-triangle" />
&nbsp;
{{ $t('settings.style.shadows.filter_hint.avatar_inset_short') }}
</div>
</template>
<template #content>
<div class="inset-tooltip">
<i18n-t
scope="global"
keypath="settings.style.shadows.filter_hint.always_drop_shadow"
tag="p"
> >
<FAIcon icon="exclamation-triangle" /> <code>filter: drop-shadow()</code>
&nbsp; </i18n-t>
{{ $t('settings.style.shadows.filter_hint.avatar_inset_short') }} <p>{{ $t('settings.style.shadows.filter_hint.avatar_inset') }}</p>
</div> <i18n-t
</template> scope="global"
<template #content> keypath="settings.style.shadows.filter_hint.drop_shadow_syntax"
<div class="inset-tooltip tooltip"> tag="p"
<i18n-t >
scope="global" <code>drop-shadow</code>
keypath="settings.style.shadows.filter_hint.always_drop_shadow" <code>spread-radius</code>
tag="p" <code>inset</code>
> </i18n-t>
<code>filter: drop-shadow()</code> <i18n-t
</i18n-t> scope="global"
<p>{{ $t('settings.style.shadows.filter_hint.avatar_inset') }}</p> keypath="settings.style.shadows.filter_hint.inset_classic"
<i18n-t tag="p"
scope="global" >
keypath="settings.style.shadows.filter_hint.drop_shadow_syntax" <code>box-shadow</code>
tag="p" </i18n-t>
> <p>{{ $t('settings.style.shadows.filter_hint.spread_zero') }}</p>
<code>drop-shadow</code> </div>
<code>spread-radius</code> </template>
<code>inset</code> </Popover>
</i18n-t>
<i18n-t
scope="global"
keypath="settings.style.shadows.filter_hint.inset_classic"
tag="p"
>
<code>box-shadow</code>
</i18n-t>
<p>{{ $t('settings.style.shadows.filter_hint.spread_zero') }}</p>
</div>
</template>
</Popover>
</template>
</div> </div>
</div> </div>
</template> </template>

View file

@ -773,8 +773,7 @@
"cOrange": "Orange color", "cOrange": "Orange color",
"extra1": "Extra 1", "extra1": "Extra 1",
"extra2": "Extra 2", "extra2": "Extra 2",
"extra3": "Extra 3", "extra3": "Extra 3"
"v2_unsupported": "Older v2 themes don't support palettes. Switch to v3 theme to make use of palettes",
}, },
"editor": { "editor": {
"title": "Style", "title": "Style",
@ -965,9 +964,6 @@
"blur": "Blur", "blur": "Blur",
"spread": "Spread", "spread": "Spread",
"inset": "Inset", "inset": "Inset",
"raw": "Plain shadow",
"expression": "Expression (advanced)",
"empty_expression": "Empty expression",
"hintV3": "For shadows you can also use the {0} notation to use other color slot.", "hintV3": "For shadows you can also use the {0} notation to use other color slot.",
"filter_hint": { "filter_hint": {
"always_drop_shadow": "Warning, this shadow always uses {0} when browser supports it.", "always_drop_shadow": "Warning, this shadow always uses {0} when browser supports it.",

View file

@ -5,7 +5,6 @@ import { convertTheme2To3 } from 'src/services/theme_data/theme2_to_theme3.js'
const defaultState = { const defaultState = {
localFonts: null, localFonts: null,
themeApplied: false, themeApplied: false,
themeVersion: 'v3',
temporaryChangesTimeoutId: null, // used for temporary options that revert after a timeout temporaryChangesTimeoutId: null, // used for temporary options that revert after a timeout
temporaryChangesConfirm: () => {}, // used for applying temporary options temporaryChangesConfirm: () => {}, // used for applying temporary options
temporaryChangesRevert: () => {}, // used for reverting temporary options temporaryChangesRevert: () => {}, // used for reverting temporary options
@ -220,8 +219,7 @@ const interfaceMod = {
return value return value
} catch (e) { } catch (e) {
console.error('Could not fetch palettes index', e) console.error('Could not fetch palettes index', e)
commit('setInstanceOption', { name: 'palettesIndex', value: { _error: e } }) return {}
return Promise.resolve({})
} }
}, },
setPalette ({ dispatch, commit }, value) { setPalette ({ dispatch, commit }, value) {
@ -247,7 +245,6 @@ const interfaceMod = {
return value return value
} catch (e) { } catch (e) {
console.error('Could not fetch styles index', e) console.error('Could not fetch styles index', e)
commit('setInstanceOption', { name: 'stylesIndex', value: { _error: e } })
return Promise.resolve({}) return Promise.resolve({})
} }
}, },
@ -274,7 +271,6 @@ const interfaceMod = {
return value return value
} catch (e) { } catch (e) {
console.error('Could not fetch themes index', e) console.error('Could not fetch themes index', e)
commit('setInstanceOption', { name: 'themesIndex', value: { _error: e } })
return Promise.resolve({}) return Promise.resolve({})
} }
}, },
@ -311,7 +307,7 @@ const interfaceMod = {
commit('setOption', { name: 'customThemeSource', value: null }) commit('setOption', { name: 'customThemeSource', value: null })
}, },
async applyTheme ( async applyTheme (
{ dispatch, commit, rootState, state }, { dispatch, commit, rootState },
{ recompile = true } = {} { recompile = true } = {}
) { ) {
// If we're not not forced to recompile try using // If we're not not forced to recompile try using
@ -377,37 +373,31 @@ const interfaceMod = {
userThemeV2Snapshot = null userThemeV2Snapshot = null
majorVersionUsed = 'v3' majorVersionUsed = 'v3'
if (!palettesIndex || !stylesIndex) {
const result = await Promise.all([
dispatch('fetchPalettesIndex'),
dispatch('fetchStylesIndex')
])
palettesIndex = result[0]
stylesIndex = result[1]
}
} else if ( } else if (
(userThemeV2Name || userThemeV2Name ||
userThemeV2Snapshot || userThemeV2Snapshot ||
userThemeV2Source || userThemeV2Source ||
instanceThemeV2Name) instanceThemeV2Name
) { ) {
majorVersionUsed = 'v2' majorVersionUsed = 'v2'
} else {
// if all fails fallback to v3
majorVersionUsed = 'v3'
}
if (majorVersionUsed === 'v3') {
const result = await Promise.all([
dispatch('fetchPalettesIndex'),
dispatch('fetchStylesIndex')
])
palettesIndex = result[0]
stylesIndex = result[1]
} else {
// Promise.all just to be uniform with v3 // Promise.all just to be uniform with v3
const result = await Promise.all([ const result = await Promise.all([
dispatch('fetchThemesIndex') dispatch('fetchThemesIndex')
]) ])
themesIndex = result[0] themesIndex = result[0]
} else {
majorVersionUsed = 'v3'
} }
state.themeVersion = majorVersionUsed
let styleDataUsed = null let styleDataUsed = null
let styleNameUsed = null let styleNameUsed = null
let paletteDataUsed = null let paletteDataUsed = null
@ -530,7 +520,7 @@ const interfaceMod = {
return result return result
})() })()
const theme2ruleset = themeDataUsed && convertTheme2To3(generatePreset(themeDataUsed).source) const theme2ruleset = themeDataUsed && convertTheme2To3(normalizeThemeData(themeDataUsed))
const hacks = [] const hacks = []
Object.entries(theme3hacks).forEach(([key, value]) => { Object.entries(theme3hacks).forEach(([key, value]) => {

View file

@ -144,7 +144,8 @@ export const tryLoadCache = () => {
} }
} }
export const applyTheme = (input, onFinish = (data) => {}, debug) => { export const applyTheme = async (input, onFinish = (data) => {}, debug) => {
console.log('INPUT', input)
const eagerStyles = createStyleSheet(EAGER_STYLE_ID) const eagerStyles = createStyleSheet(EAGER_STYLE_ID)
const lazyStyles = createStyleSheet(LAZY_STYLE_ID) const lazyStyles = createStyleSheet(LAZY_STYLE_ID)

View file

@ -44,8 +44,8 @@ const findShadow = (shadows, { dynamicVars, staticVars }) => {
if (shadow.startsWith('$')) { if (shadow.startsWith('$')) {
targetShadow = process(shadow, shadowFunctions, { findColor, findShadow }, { dynamicVars, staticVars }) targetShadow = process(shadow, shadowFunctions, { findColor, findShadow }, { dynamicVars, staticVars })
} else if (shadow.startsWith('--')) { } else if (shadow.startsWith('--')) {
// modifiers are completely unsupported here const [variable] = shadow.split(/,/g).map(str => str.trim()) // discarding modifier since it's not supported
const variableSlot = shadow.substring(2) const variableSlot = variable.substring(2)
return findShadow(staticVars[variableSlot], { dynamicVars, staticVars }) return findShadow(staticVars[variableSlot], { dynamicVars, staticVars })
} else { } else {
targetShadow = parseShadow(shadow) targetShadow = parseShadow(shadow)
@ -66,7 +66,6 @@ const findColor = (color, { dynamicVars, staticVars }) => {
if (typeof color !== 'string' || (!color.startsWith('--') && !color.startsWith('$'))) return color if (typeof color !== 'string' || (!color.startsWith('--') && !color.startsWith('$'))) return color
let targetColor = null let targetColor = null
if (color.startsWith('--')) { if (color.startsWith('--')) {
// Modifier support is pretty much for v2 themes only
const [variable, modifier] = color.split(/,/g).map(str => str.trim()) const [variable, modifier] = color.split(/,/g).map(str => str.trim())
const variableSlot = variable.substring(2) const variableSlot = variable.substring(2)
if (variableSlot === 'stack') { if (variableSlot === 'stack') {
@ -422,7 +421,7 @@ export const init = ({
break break
} }
case 'shadow': { case 'shadow': {
const shadow = value.split(/,/g).map(s => s.trim()).filter(x => x) const shadow = value.split(/,/g).map(s => s.trim())
dynamicVars[k] = shadow dynamicVars[k] = shadow
if (combination.component === rootComponentName) { if (combination.component === rootComponentName) {
staticVars[k.substring(2)] = shadow staticVars[k.substring(2)] = shadow

View file

@ -1,6 +1,6 @@
{ {
"pleroma-dark": [ "Pleroma Dark", "#121a24", "#182230", "#b9b9ba", "#d8a070", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
"pleroma-light": [ "Pleroma Light", "#f2f4f6", "#dbe0e8", "#304055", "#f86f0f", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ], "pleroma-light": [ "Pleroma Light", "#f2f4f6", "#dbe0e8", "#304055", "#f86f0f", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
"pleroma-dark": [ "Pleroma Dark", "#121a24", "#182230", "#b9b9ba", "#d8a070", "#d31014", "#0fa00f", "#0095ff", "#ffa500" ],
"classic-dark": { "classic-dark": {
"name": "Classic Dark", "name": "Classic Dark",
"background": "#161c20", "background": "#161c20",
@ -12,7 +12,6 @@
"cBlue": "#0095ff", "cBlue": "#0095ff",
"cOrange": "#ffa500" "cOrange": "#ffa500"
}, },
"bird": [ "Bird", "#f8fafd", "#e6ecf0", "#14171a", "#0084b8", "#e0245e", "#17bf63", "#1b95e0", "#fab81e"],
"pleroma-amoled": [ "Pleroma Dark AMOLED", "#000000", "#111111", "#b0b0b1", "#d8a070", "#aa0000", "#0fa00f", "#0095ff", "#d59500"], "pleroma-amoled": [ "Pleroma Dark AMOLED", "#000000", "#111111", "#b0b0b1", "#d8a070", "#aa0000", "#0fa00f", "#0095ff", "#d59500"],
"tomorrow-night": { "tomorrow-night": {
"name": "Tomorrow Night", "name": "Tomorrow Night",
@ -27,6 +26,7 @@
"_cYellow": "#f0c674", "_cYellow": "#f0c674",
"_cPurple": "#b294bb" "_cPurple": "#b294bb"
}, },
"bird": [ "Bird", "#f8fafd", "#e6ecf0", "#14171a", "#0084b8", "#e0245e", "#17bf63", "#1b95e0", "#fab81e"],
"ir-black": [ "Ir Black", "#000000", "#242422", "#b5b3aa", "#ff6c60", "#FF6C60", "#A8FF60", "#96CBFE", "#FFFFB6" ], "ir-black": [ "Ir Black", "#000000", "#242422", "#b5b3aa", "#ff6c60", "#FF6C60", "#A8FF60", "#96CBFE", "#FFFFB6" ],
"monokai": [ "Monokai", "#272822", "#383830", "#f8f8f2", "#f92672", "#F92672", "#a6e22e", "#66d9ef", "#f4bf75" ] "monokai": [ "Monokai", "#272822", "#383830", "#f8f8f2", "#f92672", "#F92672", "#a6e22e", "#66d9ef", "#f4bf75" ]
} }