mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-25 00:50:29 +00:00
Fixed insiders dashboard - light theme
This commit is contained in:
parent
2f3582d952
commit
5970ee397b
1 changed files with 8 additions and 2 deletions
|
@ -15,7 +15,7 @@ License: GNU General Public License v3.0
|
|||
|
||||
<?php
|
||||
// Base color
|
||||
$baseColor = $color; // Replace this with your desired color value
|
||||
$baseColor = $color;
|
||||
|
||||
// Function to darken a color by a percentage
|
||||
function darkenColor($color, $percent)
|
||||
|
@ -63,7 +63,6 @@ $secondaryColor = lightenColor($baseColor, 50);
|
|||
$primaryColor = $baseColor;
|
||||
$backgroundColor = lightenColor($baseColor, 70);
|
||||
|
||||
// Now you can use these color variables in your CSS or any other parts of your PHP code.
|
||||
?>
|
||||
|
||||
@import url('all.css');
|
||||
|
@ -617,3 +616,10 @@ a.scroll-to-top.rounded i.fas.fa-angle-up {
|
|||
.text-muted {
|
||||
color: <?php echo $textColor; ?>!important;
|
||||
}
|
||||
|
||||
.grid-stack-item-content {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 5px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue