remove mix-manifest.json and fix gray colors
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,6 +20,7 @@ fonts/
|
|||||||
templates/*
|
templates/*
|
||||||
!templates/index.html
|
!templates/index.html
|
||||||
!templates/Froxlor/
|
!templates/Froxlor/
|
||||||
|
templates/Froxlor/assets/mix-manifest.json
|
||||||
templates/Froxlor/assets/css/
|
templates/Froxlor/assets/css/
|
||||||
templates/Froxlor/assets/js/
|
templates/Froxlor/assets/js/
|
||||||
templates/Froxlor/assets/webfonts/
|
templates/Froxlor/assets/webfonts/
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"/js/main.js": "/js/main.js",
|
|
||||||
"/webfonts/fa-brands-400.ttf": "/webfonts/fa-brands-400.ttf",
|
|
||||||
"/webfonts/fa-brands-400.woff2": "/webfonts/fa-brands-400.woff2",
|
|
||||||
"/webfonts/fa-regular-400.ttf": "/webfonts/fa-regular-400.ttf",
|
|
||||||
"/webfonts/fa-regular-400.woff2": "/webfonts/fa-regular-400.woff2",
|
|
||||||
"/webfonts/fa-solid-900.ttf": "/webfonts/fa-solid-900.ttf",
|
|
||||||
"/webfonts/fa-solid-900.woff2": "/webfonts/fa-solid-900.woff2",
|
|
||||||
"/webfonts/fa-v4compatibility.ttf": "/webfonts/fa-v4compatibility.ttf",
|
|
||||||
"/webfonts/fa-v4compatibility.woff2": "/webfonts/fa-v4compatibility.woff2",
|
|
||||||
"/css/dark.css": "/css/dark.css",
|
|
||||||
"/css/main.css": "/css/main.css"
|
|
||||||
}
|
|
||||||
@@ -2,52 +2,52 @@
|
|||||||
|
|
||||||
// Color
|
// Color
|
||||||
$primary: $froxlor-700;
|
$primary: $froxlor-700;
|
||||||
$secondary: $neutral-500;
|
$secondary: $gray-500;
|
||||||
$info: $froxlor-800;
|
$info: $froxlor-800;
|
||||||
|
|
||||||
// Body
|
// Body
|
||||||
$body-bg: $neutral-900;
|
$body-bg: $gray-900;
|
||||||
$body-color: $neutral-100;
|
$body-color: $gray-100;
|
||||||
|
|
||||||
// Borders
|
// Borders
|
||||||
$border-color: $neutral-900;
|
$border-color: $gray-900;
|
||||||
$border-color-translucent: $neutral-900;
|
$border-color-translucent: $gray-900;
|
||||||
|
|
||||||
// Link
|
// Link
|
||||||
$link-color: $froxlor-500;
|
$link-color: $froxlor-500;
|
||||||
$nav-link-color: $body-color;
|
$nav-link-color: $body-color;
|
||||||
|
|
||||||
// List groups
|
// List groups
|
||||||
$list-group-bg: $neutral-800;
|
$list-group-bg: $gray-800;
|
||||||
$list-group-color: $body-color;
|
$list-group-color: $body-color;
|
||||||
|
|
||||||
// Navbar
|
// Navbar
|
||||||
$navbar-bg: $neutral-800;
|
$navbar-bg: $gray-800;
|
||||||
$navbar-light-color: $neutral-200;
|
$navbar-light-color: $gray-200;
|
||||||
$navbar-light-hover-color: $neutral-500;
|
$navbar-light-hover-color: $gray-500;
|
||||||
$navbar-light-active-color: $neutral-500;
|
$navbar-light-active-color: $gray-500;
|
||||||
|
|
||||||
// Sidebar
|
// Sidebar
|
||||||
|
|
||||||
// Card
|
// Card
|
||||||
$card-bg: $neutral-800;
|
$card-bg: $gray-800;
|
||||||
$card-border-color: $neutral-600;
|
$card-border-color: $gray-600;
|
||||||
|
|
||||||
// Heading
|
// Heading
|
||||||
$heading-bg: $neutral-800;
|
$heading-bg: $gray-800;
|
||||||
$heading-color: $body-color;
|
$heading-color: $body-color;
|
||||||
$heading-border-color: rgba(0,0,0,0.15);
|
$heading-border-color: rgba(0,0,0,0.15);
|
||||||
|
|
||||||
// Dropdown
|
// Dropdown
|
||||||
$dropdown-bg: $neutral-800;
|
$dropdown-bg: $gray-800;
|
||||||
$dropdown-color: $neutral-100;
|
$dropdown-color: $gray-100;
|
||||||
$dropdown-link-color: $neutral-100;
|
$dropdown-link-color: $gray-100;
|
||||||
$dropdown-link-hover-bg: $neutral-900;
|
$dropdown-link-hover-bg: $gray-900;
|
||||||
|
|
||||||
// Modal
|
// Modal
|
||||||
$modal-content-bg: $neutral-800;
|
$modal-content-bg: $gray-800;
|
||||||
|
|
||||||
// Form control
|
// Form control
|
||||||
$input-bg: $neutral-900;
|
$input-bg: $gray-900;
|
||||||
$input-border-color: $black;
|
$input-border-color: $black;
|
||||||
$input-group-addon-bg: $neutral-800;
|
$input-group-addon-bg: $gray-800;
|
||||||
|
|||||||
@@ -10,36 +10,36 @@ $froxlor-700: #1a83b6;
|
|||||||
$froxlor-800: #1872a2;
|
$froxlor-800: #1872a2;
|
||||||
$froxlor-900: #0e5380;
|
$froxlor-900: #0e5380;
|
||||||
|
|
||||||
$neutral-50: #fafafa;
|
// Gray
|
||||||
$neutral-100: #f5f5f5;
|
$white: #fff;
|
||||||
$neutral-200: #e5e5e5;
|
$gray-100: #f8f9fa;
|
||||||
$neutral-300: #d4d4d4;
|
$gray-200: #e9ecef;
|
||||||
$neutral-400: #a3a3a3;
|
$gray-300: #dee2e6;
|
||||||
$neutral-500: #737373;
|
$gray-400: #ced4da;
|
||||||
$neutral-600: #525252;
|
$gray-500: #adb5bd;
|
||||||
$neutral-700: #404040;
|
$gray-600: #6c757d;
|
||||||
$neutral-800: #262626;
|
$gray-700: #495057;
|
||||||
$neutral-900: #171717;
|
$gray-800: #343a40;
|
||||||
|
$gray-900: #212529;
|
||||||
$dark: $neutral-800;
|
$black: #000;
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$light-bg: $neutral-100;
|
$light: $gray-100;
|
||||||
$dark-bg: $neutral-800;
|
|
||||||
|
|
||||||
$light-font-color: $neutral-800;
|
|
||||||
$dark-font-color: $neutral-100;
|
|
||||||
|
|
||||||
$black: #000000;
|
|
||||||
$white: #ffffff;
|
|
||||||
$light: $neutral-100;
|
|
||||||
$primary: $froxlor-800;
|
$primary: $froxlor-800;
|
||||||
$secondary: $neutral-600;
|
$secondary: $gray-600;
|
||||||
$info: $froxlor-900;
|
$info: $froxlor-900;
|
||||||
$warning: #FBBF24;
|
$warning: #FBBF24;
|
||||||
$danger: #BE123C;
|
$danger: #BE123C;
|
||||||
$success: #059669;
|
$success: #059669;
|
||||||
|
|
||||||
|
// Body
|
||||||
|
$light-bg: $gray-100;
|
||||||
|
$dark-bg: $gray-800;
|
||||||
|
|
||||||
|
// Typography
|
||||||
|
$light-font-color: $gray-800;
|
||||||
|
$dark-font-color: $gray-100;
|
||||||
|
|
||||||
$alert-bg-scale: 0;
|
$alert-bg-scale: 0;
|
||||||
$alert-color-scale: 0;
|
$alert-color-scale: 0;
|
||||||
$alert-border-width: 0;
|
$alert-border-width: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user