Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Light and Dark Grey Main and Secondary themes as per Request #2600 #4293

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/renderer/helpers/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export const colors = [
{ name: 'Amber', value: '#FFAB00' },
{ name: 'Orange', value: '#FF6D00' },
{ name: 'DeepOrange', value: '#DD2C00' },
{ name: 'LightGray', value: '#B1B1B1' },
{ name: 'DarkGray', value: '#696969' },
{ name: 'DraculaCyan', value: '#8BE9FD' },
{ name: 'DraculaGreen', value: '#50FA7B' },
{ name: 'DraculaOrange', value: '#FFB86C' },
Expand Down
36 changes: 36 additions & 0 deletions src/renderer/themes.css
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,22 @@ it can be safely elided. This looks quite pleasant on this theme. */
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");
--logo-text-bar-color: url("../../_icons/textBlackSmall.png");
}
.mainLightGray {
--text-with-main-color: #000000;
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.svg");

--logo-text-bar-color: url("../../_icons/textBlackSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-text-bar-color: url("../../_icons/textBlackSmall.png");
--logo-text-bar-color: url("../../_icons/textBlackSmall.svg");

--primary-color: #B1B1B1;
--primary-color-hover: #848482;
--primary-color-active: #7E7E7E;
}
.mainDarkGray {
--text-with-main-color: #FFFFFF;
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.svg");

--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");
--logo-text-bar-color: url("../../_icons/textWhiteSmall.svg");

--primary-color: #696969;
--primary-color-hover: #555555;
--primary-color-active: #4E4E4E;
}

.mainRed {
--primary-color: #f44336;
Expand Down Expand Up @@ -566,6 +582,26 @@ it can be safely elided. This looks quite pleasant on this theme. */
.secDeepOrange {
--text-with-accent-color: #000000;
}
.secLightGray {
--text-with-accent-color: #000000;
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.png");
--logo-icon-bar-color: url("../../_icons/iconBlackSmall.svg");

--logo-text-bar-color: url("../../_icons/textBlackSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-text-bar-color: url("../../_icons/textBlackSmall.png");
--logo-text-bar-color: url("../../_icons/textBlackSmall.svg");

--accent-color: #B1B1B1;
--accent-color-hover: #848482;
--accent-color-active: #7E7E7E;
--accent-color-light: #cfcfcf;
--accent-color-visited: #797979;
}
.secDarkGray {
--text-with-accent-color: #FFFFFF;
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.png");
--logo-icon-bar-color: url("../../_icons/iconWhiteSmall.svg");

--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
--logo-text-bar-color: url("../../_icons/textWhiteSmall.png");
--logo-text-bar-color: url("../../_icons/textWhiteSmall.svg");

--accent-color: #696969;
--accent-color-hover: #555555;
--accent-color-active: #4E4E4E;
--accent-color-light: #A5A5A5;
--accent-color-visited: #444444;
}

.secRed {
--accent-color: #f44336;
Expand Down
2 changes: 2 additions & 0 deletions static/locales/en-US.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ Settings:
Amber: Amber
Orange: Orange
Deep Orange: Deep Orange
Light Gray: Light Gray
Dark Gray: Dark Gray
Dracula Cyan: Dracula Cyan
Dracula Green: Dracula Green
Dracula Orange: Dracula Orange
Expand Down
Loading