Last active
May 31, 2018 14:58
-
-
Save leekelleher/6d4a995a7fa8d974a0ecef957ae4284e to your computer and use it in GitHub Desktop.
Prototype for an Umbraco "Night Mode" back-office UI theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Umbraco Night Mode - A BackOffice UI Theme | |
*/ | |
body { | |
filter: invert(100%) hue-rotate(90deg) sepia(25%); | |
} | |
#umbracoMainPageBody { | |
background-color: #000; | |
} | |
.umb-avatar, | |
.umb-media-grid img, | |
.umb-mediapicker img { | |
filter: invert(100%) hue-rotate(-90deg) sepia(0); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
css: [ | |
"~/App_Plugins/BackOfficeThemes/night-mode.css" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment