diff --git a/external/lang b/external/lang index 53bdb2d1..324a942e 160000 --- a/external/lang +++ b/external/lang @@ -1 +1 @@ -Subproject commit 53bdb2d15516d67a8c989af9bf4d5854b29e6004 +Subproject commit 324a942e2b1da38f82efe0bd5f6b1c8ff7d7a65c diff --git a/src/components/common/Tooltip.tsx b/src/components/common/Tooltip.tsx index 756eef63..c613260b 100644 --- a/src/components/common/Tooltip.tsx +++ b/src/components/common/Tooltip.tsx @@ -28,10 +28,10 @@ const PermissionTooltipBase = styled.div` flex-direction: column; span { + font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--secondary-foreground); - font-size: 11px; } code { diff --git a/src/context/Theme.tsx b/src/context/Theme.tsx index 00b19588..a2fbd2d1 100644 --- a/src/context/Theme.tsx +++ b/src/context/Theme.tsx @@ -223,7 +223,7 @@ export const PRESETS: Record = { light: true, accent: "#FD6671", background: "#F6F6F6", - foreground: "#101010", + foreground: "#000000", block: "#414141", "message-box": "#F1F1F1", mention: "rgba(251, 255, 0, 0.40)", @@ -236,10 +236,10 @@ export const PRESETS: Record = { "primary-background": "#FFFFFF", "primary-header": "#F1F1F1", "secondary-background": "#F1F1F1", - "secondary-foreground": "#888888", + "secondary-foreground": "#1f1f1f", "secondary-header": "#F1F1F1", "tertiary-background": "#4D4D4D", - "tertiary-foreground": "#646464", + "tertiary-foreground": "#3a3a3a", "status-online": "#3ABF7E", "status-away": "#F39F00", "status-busy": "#F84848", diff --git a/src/styles/_elements.scss b/src/styles/_elements.scss index 0f9028de..d0f8e44a 100644 --- a/src/styles/_elements.scss +++ b/src/styles/_elements.scss @@ -21,18 +21,18 @@ } ::selection { - background: var(--accent); - color: var(--foreground); + background: var(--foreground); + color: var(--background); } ::-moz-selection { - background: var(--accent); - color: var(--foreground); + background: var(--foreground); + color: var(--background); } ::-webkit-selection { - background: var(--accent); - color: var(--foreground); + background: var(--foreground); + color: var(--background); } a, diff --git a/src/styles/index.scss b/src/styles/index.scss index 95c95f1e..62113584 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -7,6 +7,7 @@ @import "tippy.js/dist/tippy.css"; .tippy-box { + color: var(--foreground); background: var(--secondary-background); }