* feat: add support for dark / light mode switching and simultaneouscustom light / dark mode themes * refactor(color-picker): optional initial color and fallback color * refactor: used FixedPortion for layout of the settings item This makes sure that the control always has at least the specified portion of the available space * refactor: make all members of the ThemeBuilder public * refactor: add and update palette colors * fix(theme): typo and derive PartialEq for ThemeBuilder * fix: update color picker usage * feat: add more variables to the theme * fix: radius on headerbar * fix: Theme CosmicConfigEntry impl * chore: specify rev of taffy * fix: theme CosmicConfigEntry missing variables * fix: apply theme type when theme mode changes * wip: add plus icon to empty color picker button * chore: fix rev and imports * refactor(color-picker): allow custom size for the icon * refactor(color_picker): make color_button public * update iced
116 lines
2.2 KiB
Text
116 lines
2.2 KiB
Text
Dark (
|
|
(
|
|
name: "cosmic-dark",
|
|
blue: (
|
|
c: "#94EBEB",
|
|
),
|
|
red: (
|
|
c: "#FFB5B5",
|
|
),
|
|
green: (
|
|
c: "#ACF7D2",
|
|
),
|
|
yellow: (
|
|
c: "#FFF19E",
|
|
),
|
|
gray_1: (
|
|
c: "#1B1B1B",
|
|
),
|
|
gray_2: (
|
|
c: "#262626",
|
|
),
|
|
gray_3: (
|
|
c: "#303030",
|
|
),
|
|
neutral_0: (
|
|
c: "#000000",
|
|
),
|
|
neutral_1: (
|
|
c: "#1B1B1B",
|
|
),
|
|
neutral_2: (
|
|
c: "#303030",
|
|
),
|
|
neutral_3: (
|
|
c: "#474747",
|
|
),
|
|
neutral_4: (
|
|
c: "#5E5E5E",
|
|
),
|
|
neutral_5: (
|
|
c: "#777777",
|
|
),
|
|
neutral_6: (
|
|
c: "#919191",
|
|
),
|
|
neutral_7: (
|
|
c: "#ABABAB",
|
|
),
|
|
neutral_8: (
|
|
c: "#C6C6C6",
|
|
),
|
|
neutral_9: (
|
|
c: "#E2E2E2",
|
|
),
|
|
neutral_10: (
|
|
c: "#FFFFFF",
|
|
),
|
|
bright_green: (
|
|
c: "#5EDB8C",
|
|
),
|
|
bright_red: (
|
|
c: "#FFA090",
|
|
),
|
|
bright_orange: (
|
|
c: "#FFA37D",
|
|
),
|
|
ext_warm_grey: (
|
|
c: "#9B8E8A",
|
|
),
|
|
ext_orange: (
|
|
c: "#FFAD00",
|
|
),
|
|
ext_yellow: (
|
|
c: "#FEDB40",
|
|
),
|
|
ext_blue: (
|
|
c: "#48B9C7",
|
|
),
|
|
ext_purple: (
|
|
c: "#CF7DFF",
|
|
),
|
|
ext_pink: (
|
|
c: "#F93A83",
|
|
),
|
|
ext_indigo: (
|
|
c: "#3E88FF",
|
|
),
|
|
accent_blue: (
|
|
c: "#63D0DF",
|
|
),
|
|
accent_green: (
|
|
c: "#92CF9C",
|
|
),
|
|
accent_warm_grey: (
|
|
c: "#CABAB4",
|
|
),
|
|
accent_orange: (
|
|
c: "#FFAD00",
|
|
),
|
|
accent_yellow: (
|
|
c: "#F7E062",
|
|
),
|
|
accent_purple: (
|
|
c: "#E79CFE",
|
|
),
|
|
accent_pink: (
|
|
c: "#FF9CB1",
|
|
),
|
|
accent_red: (
|
|
c: "#FDA1A0",
|
|
),
|
|
accent_indigo: (
|
|
c: "#A1C0EB",
|
|
),
|
|
)
|
|
)
|