Newer
Older
framework / scss / vars / _colors.scss
@TLCD96 TLCD96 on 19 Dec 2023 750 bytes update
/**
 * Colors
 */

$black		:#000;
$white		:#fff;
$red		:#5f0202;
$gray		:#1f1f1f;
$emerald	:#00834e;
$indigo		:#4b0082;

$colors_backgrounds:(
	"black" 	: $black,
	"white"		: $white,
	"red"		: $red,
	"gray"		: $gray,
	"emerald"	: $emerald,
	"indigo"	: $indigo
);
$--gw-ring-offset-color: #fff;
$--gw-ring-color: rgba(59,130,246,0.5);

body:not([class*=theme-dark]):not([class*="theme-light"]){
	@media (prefers-color-scheme:dark){
		--content_bg_primary_color: #343a40;
		--content_bg_secondary_color: #454d55;
		--content_tx_color: white;
		--border-color: #4b545c;
	}
	@media (prefers-color-scheme:light){
		--content_bg_primary_color: #e1e1e1;
		--content_bg_secondary_color: #cccccc;
		--content_tx_color: #1f2d3d;
		--border-color: #dee2e6;
	}
}