[frio] Add more color accents
This commit is contained in:
parent
cb588eb535
commit
e4a1ace3ad
|
@ -26,6 +26,26 @@
|
||||||
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_BLUE}}; width: 20px; display: inline-block"> </span>
|
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_BLUE}}; width: 20px; display: inline-block"> </span>
|
||||||
{{$scheme_accent.3.blue}}
|
{{$scheme_accent.3.blue}}
|
||||||
</label>
|
</label>
|
||||||
|
<label class="radio-inline">
|
||||||
|
<input type="radio" name="{{$scheme_accent.0}}" value="{{$smarty.const.FRIO_SCHEME_ACCENT_RED}}" {{if $scheme_accent.2 == $smarty.const.FRIO_SCHEME_ACCENT_RED}} checked{{/if}}>
|
||||||
|
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_RED}}; width: 20px; display: inline-block"> </span>
|
||||||
|
{{$scheme_accent.3.red}}
|
||||||
|
</label>
|
||||||
|
<label class="radio-inline">
|
||||||
|
<input type="radio" name="{{$scheme_accent.0}}" value="{{$smarty.const.FRIO_SCHEME_ACCENT_PURPLE}}" {{if $scheme_accent.2 == $smarty.const.FRIO_SCHEME_ACCENT_PURPLE}} checked{{/if}}>
|
||||||
|
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_PURPLE}}; width: 20px; display: inline-block"> </span>
|
||||||
|
{{$scheme_accent.3.purple}}
|
||||||
|
</label>
|
||||||
|
<label class="radio-inline">
|
||||||
|
<input type="radio" name="{{$scheme_accent.0}}" value="{{$smarty.const.FRIO_SCHEME_ACCENT_GREEN}}" {{if $scheme_accent.2 == $smarty.const.FRIO_SCHEME_ACCENT_GREEN}} checked{{/if}}>
|
||||||
|
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_GREEN}}; width: 20px; display: inline-block"> </span>
|
||||||
|
{{$scheme_accent.3.green}}
|
||||||
|
</label>
|
||||||
|
<label class="radio-inline">
|
||||||
|
<input type="radio" name="{{$scheme_accent.0}}" value="{{$smarty.const.FRIO_SCHEME_ACCENT_PINK}}" {{if $scheme_accent.2 == $smarty.const.FRIO_SCHEME_ACCENT_PINK}} checked{{/if}}>
|
||||||
|
<span style="border-radius: 10px; background-color: {{$smarty.const.FRIO_SCHEME_ACCENT_PINK}}; width: 20px; display: inline-block"> </span>
|
||||||
|
{{$scheme_accent.3.pink}}
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,11 @@ use Friendica\Module;
|
||||||
use Friendica\Util\Strings;
|
use Friendica\Util\Strings;
|
||||||
|
|
||||||
const FRIO_SCHEME_ACCENT_BLUE = '#1e87c2';
|
const FRIO_SCHEME_ACCENT_BLUE = '#1e87c2';
|
||||||
|
const FRIO_SCHEME_ACCENT_RED = '#b50404';
|
||||||
|
const FRIO_SCHEME_ACCENT_PURPLE = '#a54bad';
|
||||||
|
const FRIO_SCHEME_ACCENT_GREEN = '#218f39';
|
||||||
|
const FRIO_SCHEME_ACCENT_PINK = '#d900a9';
|
||||||
|
|
||||||
function frio_init(App $a)
|
function frio_init(App $a)
|
||||||
{
|
{
|
||||||
global $frio;
|
global $frio;
|
||||||
|
|
Loading…
Reference in a new issue