Skip to content

Commit

Permalink
Default changed accent color to OS accent
Browse files Browse the repository at this point in the history
  • Loading branch information
xsm2 committed Jul 4, 2024
1 parent 2b56d38 commit e99f56f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/Fluent.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/*--accent: 255, 119, 0;*/ /*orange*/
/*--accent: 255, 0, 0;*/ /*red*/
/*--accent: 114, 137, 218;/*discord purple*/
--accent: --os-accent-color;
--accent: var(--os-accent-color);
--channels-width: 280px; /* The size of the server channel/dms list | Default: 300px | Fork default: 280px*/
--members-width: 255px; /* The size of the members list | Default: 280px | Fork default: 255px*/
--dark-background-hue: 0; /* The hue of the background colour. | Options: 0 to 360 | Default: 0 */
Expand Down
4 changes: 2 additions & 2 deletions src/core/_root.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

/* The colour used throughout the app | R,G,B format | Default: 98, 205, 254 */
/*--accent: 0, 166, 255;*//*strong blue*/
--accent: rgb(0, 120, 212);/*windows 11 blue*/
//--accent: rgb(0, 120, 212);/*windows 11 blue*/
/*--accent: 255, 119, 0;*//*orange*/
/*--accent: 255, 0, 0;*//*red*/
/*--accent: 114, 137, 218;/*discord purple*/
//--accent: red(var(--os-accent-color)), green(var(--os-accent-color)), blue(var(--os-accent-color));
--accent: var(--os-accent-color);


--channels-width: 280px; /* The size of the server channel/dms list | Default: 300px | Fork default: 280px*/
Expand Down

0 comments on commit e99f56f

Please sign in to comment.