Defined body background and color

This commit is contained in:
RealStickman 2022-11-19 16:22:14 +01:00
parent bc49e64e68
commit 23e2fa0943
6 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/themes/custom-learn2-dark/.sass-cache/

View File

@ -0,0 +1,5 @@
body {
background: #111111;
color: #dddddd; }
/*# sourceMappingURL=theme.css.map */

View File

@ -0,0 +1,7 @@
{
"version": 3,
"mappings": "AAAA,IAAK;EACJ,UAAU,ECGI,OAAO;EDFrB,KAAK,ECDW,OAAO",
"sources": ["../scss/theme/_core.scss","../scss/configuration/theme/_colors.scss"],
"names": [],
"file": "theme.css"
}

View File

@ -0,0 +1,2 @@
#!/bin/sh
scss --watch scss:css-compiled

View File

@ -0,0 +1,2 @@
// Colors
@import "colors";

View File

@ -0,0 +1,12 @@
// REQUIRED DEPENDENCIES - DO NOT CHANGE
// Load Template Configuration
@import "configuration/theme/base";
//-------------------------------------------
// TEMPLATE COMPONENTS
// Core
@import "theme/core";