Skip to content

Instantly share code, notes, and snippets.

@gkostov
gkostov / slack-dark-theme.css
Last active June 27, 2021 10:43 — forked from bradens/slack-dark-theme.css
Dark theme for slack
.c-mrkdwn__broadcast--mention,
.p-classic_nav__right__search__placeholder{
color: #555;
}
.channel_header, #col_messages,
#client_body:not(.onboarding):not(.feature_global_nav_layout):before,
#footer {
box-shadow: inset 1px 0 0 0 #555 !important;
}
@gkostov
gkostov / fixSlackTheme.sh
Last active July 23, 2019 14:49
fixSlackTheme.sh for Slack 4 on OSX
# !!!! make sure asar is available !!!
# npm install -g asar
# remove these to start afresh
rm -rf /Applications/Slack.app/Contents/Resources/app
rm -rf /Applications/Slack.app/Contents/Resources/app.asar.bak.unpacked
mv /Applications/Slack.app/Contents/Resources/app.asar /Applications/Slack.app/Contents/Resources/app.asar.bak 2>/dev/null
# asar needs the .unpacked dir to extract properly and we can just copy this one
cp -r /Applications/Slack.app/Contents/Resources/app.asar.unpacked /Applications/Slack.app/Contents/Resources/app.asar.bak.unpacked