Skip to content

Instantly share code, notes, and snippets.

@xoofx
Created December 28, 2020 18:06
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 xoofx/53a977854ebc148767bb171c6298562c to your computer and use it in GitHub Desktop.
Save xoofx/53a977854ebc148767bb171c6298562c to your computer and use it in GitHub Desktop.
Dark mode for LeMonde.fr with Stylish
/*
Dark Mode for the Le Monde web site at https://www.lemonde.fr/
Using Stylish Chrome Extension: https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en
With "URLs starting with:" = https://www.lemonde.fr/
*/
@media(prefers-color-scheme:dark)
{
#Header .Header, .Nav, .Nav__sub-item, body, .main, .zone, section.article__heading, .article__paragraph, .article, .article--longform .article__title, .article--longform .article__heading, .article--featured .article__wrapper, .article__title, .article__sub-title, .article__desc, .insert, div.fw_most_read_recommendations, .fw_most_read_recommendations-article, a .fw_most_read_recommendations-article {
background-color: #141414;
color: #c9d1d9;
}
.article--longform .article__desc {
background-color: #141414;
color: #717b8e;
}
.en-continu {
background-color: #012532;
}
.en-continu .Live--extended {
background-color: #013446;
}
a.js-dropdown, .article--main .article__desc, .meta__authors, .article--longform .meta__publisher, .Nav__item a, .Nav__sub-item--actualites .Nav__container--left a {
color: #717b8e
}
.logo__lemonde.logo--full
{
filter: invert(100%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment