Better color schemes

This commit is contained in:
quadbyte 2025-08-15 16:29:14 -04:00
parent 48b6c1cf5c
commit 67f568dac1
8 changed files with 56 additions and 32 deletions

View file

@ -14,6 +14,6 @@
"mSurfaceVariant": "#313244", "mSurfaceVariant": "#313244",
"mOnSurfaceVariant": "#a3b4eb", "mOnSurfaceVariant": "#a3b4eb",
"mOutline": "#45475a", "mOutline": "#45475a",
"mOutlineVariant": "#585b70", "mOutlineVariant": "#2f303d",
"mShadow": "#11111b" "mShadow": "#11111b"
} }

View file

@ -13,7 +13,7 @@
"mOnSurface": "#F8F8F2", "mOnSurface": "#F8F8F2",
"mSurfaceVariant": "#44475A", "mSurfaceVariant": "#44475A",
"mOnSurfaceVariant": "#d6d8e0", "mOnSurfaceVariant": "#d6d8e0",
"mOutline": "#6272A4", "mOutline": "#4d5c86",
"mOutlineVariant": "#4c566a", "mOutlineVariant": "#3a4666",
"mShadow": "#282A36" "mShadow": "#282A36"
} }

View file

@ -13,7 +13,7 @@
"mOnSurface": "#fbf1c7", "mOnSurface": "#fbf1c7",
"mSurfaceVariant": "#3c3836", "mSurfaceVariant": "#3c3836",
"mOnSurfaceVariant": "#ebdbb2", "mOnSurfaceVariant": "#ebdbb2",
"mOutline": "#928374", "mOutline": "#665c54",
"mOutlineVariant": "#bfb6ad", "mOutlineVariant": "#3c3836",
"mShadow": "#282828" "mShadow": "#282828"
} }

View file

@ -14,6 +14,6 @@
"mSurfaceVariant": "#3b4252", "mSurfaceVariant": "#3b4252",
"mOnSurfaceVariant": "#e5e9f0", "mOnSurfaceVariant": "#e5e9f0",
"mOutline": "#434c5e", "mOutline": "#434c5e",
"mOutlineVariant": "#4c566a", "mOutlineVariant": "#2e3440",
"mShadow": "#2e3440" "mShadow": "#2e3440"
} }

View file

@ -1,19 +1,19 @@
{ {
"mPrimary": "#ebbcba", "mPrimary": "#ebbcba",
"mOnPrimary": "#191724", "mOnPrimary": "#1f1d2e",
"mSecondary": "#31748f", "mSecondary": "#31748f",
"mOnSecondary": "#e0def4", "mOnSecondary": "#e0def4",
"mTertiary": "#9ccfd8", "mTertiary": "#9ccfd8",
"mOnTertiary": "#191724", "mOnTertiary": "#191724",
"mError": "#eb6f92", "mError": "#eb6f92",
"mOnError": "#191724", "mOnError": "#1f1d2e",
"mSurface": "#191724", "mSurface": "#1f1d2e",
"mOnSurface": "#e0def4", "mOnSurface": "#e0def4",
"mSurfaceVariant": "#26233a", "mSurfaceVariant": "#26233a",
"mOnSurfaceVariant": "#908caa", "mOnSurfaceVariant": "#908caa",
"mOutline": "#44415a", "mOutline": "#44415a",
"mOutlineVariant": "#514e6c", "mOutlineVariant": "#2e2c3c",
"mShadow": "#191724" "mShadow": "#191724"
} }

View file

@ -0,0 +1,19 @@
{
"mPrimary": "#ff9e64",
"mOnPrimary": "#1a1b26",
"mSecondary": "#ff4499",
"mOnSecondary": "#1a1b26",
"mTertiary": "#7aa2f7",
"mOnTertiary": "#1a1b26",
"mError": "#f7768e",
"mOnError": "#1f1d2e",
"mSurface": "#1a1b26",
"mOnSurface": "#a9b1d6",
"mSurfaceVariant": "#292e42",
"mOnSurfaceVariant": "#787c99",
"mOutline": "#3b4261",
"mOutlineVariant": "#282c41",
"mShadow": "#1a1b26"
}

View file

@ -45,6 +45,10 @@ ColumnLayout {
} }
} }
ColumnLayout {
spacing: Style.marginTiny * scaling
Layout.fillWidth: true
ButtonGroup { ButtonGroup {
id: schemesGroup id: schemesGroup
} }
@ -71,4 +75,5 @@ ColumnLayout {
} }
} }
} }
}
} }

View file

@ -45,16 +45,16 @@ Singleton {
id: defaultColors id: defaultColors
property color mPrimary: "#ebbcba" property color mPrimary: "#ebbcba"
property color mOnPrimary: "#191724" property color mOnPrimary: "#1f1d2e"
property color mSecondary: "#31748f" property color mSecondary: "#31748f"
property color mOnSecondary: "#e0def4" property color mOnSecondary: "#e0def4"
property color mTertiary: "#9ccfd8" property color mTertiary: "#9ccfd8"
property color mOnTertiary: "#191724" property color mOnTertiary: "#191724"
property color mError: "#eb6f92" property color mError: "#eb6f92"
property color mOnError: "#191724" property color mOnError: "#1f1d2e"
property color mSurface: "#191724" property color mSurface: "#1f1d2e"
property color mOnSurface: "#e0def4" property color mOnSurface: "#e0def4"
property color mSurfaceVariant: "#26233a" property color mSurfaceVariant: "#26233a"
property color mOnSurfaceVariant: "#908caa" property color mOnSurfaceVariant: "#908caa"