From 3437f4de4c0d90134b81885efac39b2f6362277f Mon Sep 17 00:00:00 2001 From: Mars Niermann Date: Thu, 13 Apr 2023 09:13:59 +0000 Subject: [PATCH] Add Material Version --- src/material-base.user.css | 95 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 src/material-base.user.css diff --git a/src/material-base.user.css b/src/material-base.user.css new file mode 100644 index 0000000..da02237 --- /dev/null +++ b/src/material-base.user.css @@ -0,0 +1,95 @@ +/* ==UserStyle== +@name Gruvbox Material Base +@namespace git.m3.fyi/Marsn3 +@version 1.0.7 +@description Base Gruvbox Theme +@author Marsn3 +@homepageURL https://git.m3.fyi/Marsn3/userstyles +@updateURL https://git.m3.fyi/Marsn3/userstyles/~raw/main/src/base.user.css +@license MIT +==/UserStyle== */ +/* AGENT_SHEET */ +@-moz-document url-prefix(http: //), url-prefix(https://), url-prefix(ftp://), url-prefix(file://), url(about:blank), +/* Best effort to exclude about pages that conflict with Australis-native styling */ +regexp("about:(?!addons|app-manager|config|customizing|stylish-edit|downloads|permissions|preferences|sync-tabs|webrtc).*")/*url-prefix("about:neterror")*/ +/* url-prefix("about:"), */ { + /* + * Drop the below regex, after a comma, just before the opening curly bracket above, to exclude websites from solarization: + * ,regexp("https?://(www\.)?(?!(userstyles\.org|docs\.google|github)\..*).*") + */ + :root { + --bg_dim: #1b1b1b !important; + + --bg_current_word: #3c3836 !important; + + --bg_statusline1: #32302f !important; + --bg_statusline2: #3a3735 !important; + --bg_statusline3: #504945 !important; + + --bg0: #282828 !important; + --bg1: #32302f !important; + --bg2: #32302f !important; + --bg3: #45403d !important; + --bg4: #45403d !important; + --bg5: #5a524c !important; + + --grey0: #7c6f64 !important; + --grey1: #928374 !important; + --grey2: #a89984 !important; + + --bg_diff_green: #34381b !important; + --bg_visual_green: #3b4439 !important; + --bg_diff_red: #402120 !important; + --bg_visual_red: #4c3432 !important; + --bg_diff_blue: #0e363e !important; + --bg_visual_blue: #374141 !important; + --bg_visual_yellow: #4f422e !important; + + --fg: #fbf1c7 !important; + --fg0: #d4be98 !important; + --fg1: #ddc7a1 !important; + + --red: #ea6962 !important; + --green: #a9b665 !important; + --yellow: #d8a657 !important; + --blue: #7daea3 !important; + --purple: #d3869b !important; + --aqua: #89b482 !important; + --orange: #e78a4e !important; + + --bg_red: var(--red) !important; + --bg_green: var(--green) !important; + --bg_yellow: var(--yellow) !important; + + /*Compatibility*/ + --bg_h: var(--bg_dim) !important; + --bg: var(--bg0) !important; + --bg_s: var(--bg1) !important; + + --fg2: var(--grey2) !important; + --fg3: var(--grey1) !important; + --fg4: var(--grey0) !important; + + --gray: var(--grey1) !important; + --gray-dim: var(--grey0) !important; + + --red-dim: var(--bg_red) !important; + --green-dim: var(--bg_green) !important; + --yellow-dim: var(--bg_yellow) !important; + --blue-dim: var(--blue) !important; + --purple-dim: var(--purple) !important; + --aqua-dim: var(--aqua) !important; + --orange-dim: var(--orange) !important; + + /* + --red-dim: #cc2412 !important; + --green-dim: #98971a !important; + --yellow-dim: #d79921 !important; + --blue-dim: #458588 !important; + --purple-dim: #b16286 !important; + --aqua-dim: #689d6a !important; + --gray-dim: #a89984 !important; + --orange-dim: #d65d0e !important; + */ + } +}