8000 new colour scheme dracul(dark) added and description typo fix by iamoverit · Pull Request #239 · chatty/chatty · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

new colour scheme dracul(dark) added and description typo fix #239

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

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
26 changes: 25 additions & 1 deletion src/chatty/gui/components/settings/ColorSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,31 @@ public ColorSettings(SettingsDialog d, Settings settings) {
true, // highlightBackground
true, // timestampColorEnabled
});


presets.addPreset("Dark Dracul",
new String[]{
"#2B2B2B",// backgroundColor
"#629755",// foregroundColor
"#9876AA",// infoColor
"#A0A0A0",// compactColor
"#BC3F3C", // highlightColor
"#2B2B2B",// inputBackgroundColor
"#A9B7C6", // inputForegroundColor
"#155221", // searchResultColor
"#294436", // searchResultColor2
"#3B3B3B", // backgroundColor2
"#5C0000", // highlightBackgroundColor
"#DFDFDF", // separatorColor
"#C5C5C5", // timestampColor
"40", // timestampColorInherit
},
new Boolean[]{
true, // alternateBackground
false, // messageSeparator
true, // highlightBackground
true, // timestampColorEnabled
});

presets.init();

//========
Expand Down
1 change: 1 addition & 0 deletions src/chatty/lang/Strings.properties
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,7 @@ settings.colorPresets.colorPresets = Color Presets
settings.colorPresets.option.default = Default
settings.colorPresets.option.dark = Dark
settings.colorPresets.option.dark2 = Dark 2
settings.colorPresets.option.dracul = Dracul (dark)
settings.colorPresets.button.save = Save
settings.colorPresets.button.saveAs = Save as..
settings.colorPresets.button.delete = Delete
Expand Down
0