Skip to content

Commit

Permalink
Updated default color to purple
Browse files Browse the repository at this point in the history
  • Loading branch information
ChasarooniZ committed Aug 17, 2024
1 parent 5793f7b commit 820d016
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/autoColorRing.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function autoColorRing() {
const disposition = token?.document?.disposition;
return (
{
[CONST.TOKEN_DISPOSITIONS.SECRET]: Color.fromString(COLORS.PURPLE),
[CONST.TOKEN_DISPOSITIONS.SECRET]: Color.fromString(COLORS.MAGENTA),
[CONST.TOKEN_DISPOSITIONS.FRIENDLY]: Color.fromString(COLORS.GREEN),
[CONST.TOKEN_DISPOSITIONS.NEUTRAL]: Color.fromString(COLORS.YELLOW),
[CONST.TOKEN_DISPOSITIONS.HOSTILE]: Color.fromString(COLORS.RED),
Expand Down
1 change: 1 addition & 0 deletions scripts/misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const COLORS = {
DEEPSKYBLUE: "#00BFFF",
ORANGE: "#FFA500",
PINK: "#FF69B4",
MAGENTA: "#A612D4",
PLAYER_DEFAULT: "#FFFFFE",
PF2E: {
LEVELDIFF: {
Expand Down
2 changes: 1 addition & 1 deletion scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function getDefaultSetting(isPlayerScope, setting, settingCategory) {
case "neutral":
return COLORS.YELLOW;
case "secret":
return COLORS.PURPLE;
return COLORS.MAGENTA;
default:
return null;
}
Expand Down

0 comments on commit 820d016

Please sign in to comment.