abdallhsamy's avatar

How to change adminlte primary color

Hello Ive installed adminlte using npm on laravel and don't know how to change theme colors I have app.scss , app.css and _variables.js but I don't know what to do to change colors . please help

0 likes
4 replies
frankielee's avatar
Level 29

The package is using bootstrap4.6, you can check the here.

You may have something like this in your app.scss:

Override these variables' value should able to change the color.


import "@/_variables.scss";

$primary:       $blue !default;
$secondary:     $gray-600 !default;
$success:       $green !default;
$info:          $cyan !default;
$warning:       $yellow !default;
$danger:        $red !default;
$light:         $gray-100 !default;
$dark:          $gray-800 !default;

Edit: It should app.scss

1 like

Please or to participate in this conversation.