From 829c0af0970990922309813a4c4eb9ddc379c4aa Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Wed, 9 Aug 2023 15:44:54 -0400 Subject: [PATCH] new sample colors --- docs/honk.8 | 4 ++-- views/mastodon.css | 7 +++++++ views/pleroma.css | 7 ------- 3 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 views/mastodon.css delete mode 100644 views/pleroma.css diff --git a/docs/honk.8 b/docs/honk.8 index 63178ec..966a939 100644 --- a/docs/honk.8 +++ b/docs/honk.8 @@ -266,10 +266,10 @@ honk-v98> ./honk -datadir ../honkdata admin honk-v98> date; ./honk -log honk.log -datadir ../honkdata .Ed .Pp -The views directory includes a sample pleroma.css to change color scheme. +The views directory includes a sample mastodon.css to change color scheme. .Bd -literal -offset indent honk-v98> mkdir ../honkdata/views -honk-v98> cp views/pleroma.css ../honkdata/views/local.css +honk-v98> cp views/mastodon.css ../honkdata/views/local.css .Ed .Pp Upgrade to the next version. diff --git a/views/mastodon.css b/views/mastodon.css new file mode 100644 index 0000000..4f30453 --- /dev/null +++ b/views/mastodon.css @@ -0,0 +1,7 @@ +html { + --bg-page: #353a49; + --bg-dark: #393f4f; + --fg: #fff; + --hl: #6364ff; + --fg-subtle: #606984 +} diff --git a/views/pleroma.css b/views/pleroma.css deleted file mode 100644 index b25439a..0000000 --- a/views/pleroma.css +++ /dev/null @@ -1,7 +0,0 @@ -html { - --bg-page: #1b2735; - --bg-dark: #121a24; - --fg: #b9b9ba; - --hl: #d8a070; - --fg-subtle: rgba(185, 185, 186, 0.5); -}