Skip to content

Commit

Permalink
Fix green/blue background channels
Browse files Browse the repository at this point in the history
  • Loading branch information
drakkar1969 authored and 3v1n0 committed Nov 4, 2021
1 parent a23f0c5 commit f9fc5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theming.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ var ThemeManager = class DashToDock_ThemeManager {
if (settings.get_enum('transparency-mode') == TransparencyMode.FIXED) {
newAlpha = settings.get_double('background-opacity');
this._customizedBackground =
`rgba(${color.red}, ${color.blue}, ${color.green}, ${newAlpha})`;
`rgba(${color.red}, ${color.green}, ${color.blue}, ${newAlpha})`;
} else {
this._customizedBackground = backgroundColor;
}
Expand Down

0 comments on commit f9fc5c4

Please sign in to comment.