mirror of
https://github.com/itflow-org/itflow
synced 2026-03-16 18:54:51 +00:00
Remove Themes, lime dark-gray and light as their text was not very readable
This commit is contained in:
@@ -111,6 +111,25 @@ $config_telemetry = intval($row['config_telemetry']);
|
|||||||
|
|
||||||
// Select Arrays
|
// Select Arrays
|
||||||
|
|
||||||
|
$theme_colors_array = array (
|
||||||
|
'blue',
|
||||||
|
'green',
|
||||||
|
'cyan',
|
||||||
|
'yellow',
|
||||||
|
'red',
|
||||||
|
'black',
|
||||||
|
'gray',
|
||||||
|
'indigo',
|
||||||
|
'navy',
|
||||||
|
'purple',
|
||||||
|
'fuchsia',
|
||||||
|
'pink',
|
||||||
|
'maroon',
|
||||||
|
'orange',
|
||||||
|
'teal',
|
||||||
|
'olive'
|
||||||
|
);
|
||||||
|
|
||||||
$colors_array = array (
|
$colors_array = array (
|
||||||
'blue',
|
'blue',
|
||||||
'green',
|
'green',
|
||||||
|
|||||||
@@ -15,18 +15,18 @@ require_once "inc_all_settings.php";
|
|||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
foreach ($colors_array as $color) {
|
foreach ($theme_colors_array as $theme_color) {
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="col-3 text-center mb-3">
|
<div class="col-3 text-center mb-3">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="custom-control custom-radio">
|
<div class="custom-control custom-radio">
|
||||||
<input class="custom-control-input" type="radio" id="customRadio<?php echo $color; ?>" name="theme" value="<?php echo $color; ?>" <?php if ($config_theme == $color) { echo "checked"; } ?>>
|
<input class="custom-control-input" type="radio" id="customRadio<?php echo $theme_color; ?>" name="theme" value="<?php echo $theme_color; ?>" <?php if ($config_theme == $theme_color) { echo "checked"; } ?>>
|
||||||
<label for="customRadio<?php echo $color; ?>" class="custom-control-label">
|
<label for="customRadio<?php echo $theme_color; ?>" class="custom-control-label">
|
||||||
<i class="fa fa-fw fa-6x fa-circle text-<?php echo $color; ?>"></i>
|
<i class="fa fa-fw fa-6x fa-circle text-<?php echo $theme_color; ?>"></i>
|
||||||
<br>
|
<br>
|
||||||
<?php echo $color; ?>
|
<?php echo $theme_color; ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user