User:Winkio/common.css: Difference between revisions

From C# Gamedev Wiki
No edit summary
No edit summary
Line 25: Line 25:
/* light vector theme */
/* light vector theme */
:root {
:root {
--theme-body-bg: #073307;
--theme-body-bg: #072207;
--theme-body-color: #202122;
--theme-body-color: #202122;
--theme-header-bg: #141;
--theme-header-bg: #151;
--theme-dropdown-bg: #151;
--theme-dropdown-bg: #151;
}
}

Revision as of 18:38, 10 June 2024

/* default vector theme */
:root {
	--theme-body-bg: #f8f9fa;
	--theme-body-color: #202122;
	--theme-header-bg: #fff;
	
	--theme-dropdown-bg: #fff;
}

@media screen {
	.vector-feature-zebra-design-disabled body {
	   background: var(--theme-body-bg);
	   color: var(--theme-body-color);
    }
    
    .vector-feature-zebra-design-disabled .vector-header-container {
    	background: var(--theme-header-bg);
    }
	
	.vector-feature-zebra-design-disabled .vector-dropdown .vector-dropdown-content {
		background: var(--theme-dropdown-bg);
	}
}

/* light vector theme */
:root {
	--theme-body-bg: #072207;
	--theme-body-color: #202122;
	--theme-header-bg: #151;
	
	--theme-dropdown-bg: #151;
}