Skip to content

Instantly share code, notes, and snippets.

@leekelleher
Last active May 31, 2018 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leekelleher/6d4a995a7fa8d974a0ecef957ae4284e to your computer and use it in GitHub Desktop.
Save leekelleher/6d4a995a7fa8d974a0ecef957ae4284e to your computer and use it in GitHub Desktop.
Prototype for an Umbraco "Night Mode" back-office UI theme
/*
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);
}
{
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