1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

[CL-836] Extract base css variables (#14733)

* Extract base variables

* Get tw to consume font css variables
This commit is contained in:
Oscar Hinton
2025-08-29 10:43:38 +02:00
committed by GitHub
parent 774505a89a
commit 63af0ad711
9 changed files with 31 additions and 32 deletions

View File

@@ -138,26 +138,9 @@ module.exports = {
},
},
fontFamily: {
sans: [
"Roboto",
'"Helvetica Neue"',
"Helvetica",
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
],
serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
mono: [
"Menlo",
"SFMono-Regular",
"Monaco",
"Consolas",
'"Liberation Mono"',
'"Courier New"',
"monospace",
],
sans: "var(--font-sans)",
serif: "var(--font-serif)",
mono: "var(--font-mono)",
},
ringOffsetColor: ({ theme }) => ({
DEFAULT: theme("colors.background"),