mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
Changes three things in the Input styling to reduce the changes from 1.7: - Changes the bottom border/focus outline (stroke color) from purple to charcoal. (one suggestion was to remove it, but that's both a bigger change and IMHO this still provides some nice minor styling) - Added a new input-field-bg variable so that you can customize the regular background of the input, and set it to charcoal-800. - The mouse-over effect was identical to focus (rounded, full border, dark background) and was distracting if you moved the mouse over multiple Inputs. This removes the background change by making the hover effect transparent. This required moving transparent color to our new color palette, and adding a not() so that the hover affect doesn't effect focussed inputs. Signed-off-by: Tim deBoer <git@tdeboer.ca>
114 lines
2.2 KiB
JSON
114 lines
2.2 KiB
JSON
{
|
|
"amber": {
|
|
"50": "#fffbeb",
|
|
"100": "#fef3c7",
|
|
"200": "#fde68a",
|
|
"300": "#fcd34d",
|
|
"400": "#fbbf24",
|
|
"500": "#f59e0b",
|
|
"600": "#d97706",
|
|
"700": "#b45309",
|
|
"800": "#92400e",
|
|
"900": "#78350f",
|
|
"950": "#451a03"
|
|
},
|
|
"black": "#000",
|
|
"charcoal": {
|
|
"50": "#767676",
|
|
"100": "#707073",
|
|
"200": "#5c5c5c",
|
|
"300": "#464649",
|
|
"400": "#4a4b4f",
|
|
"500": "#36363d",
|
|
"600": "#27272a",
|
|
"700": "#222222",
|
|
"800": "#18181b",
|
|
"900": "#0f0f11"
|
|
},
|
|
"dustypurple": {
|
|
"50": "#f2f2fb",
|
|
"100": "#e7e8f8",
|
|
"200": "#d3d3f2",
|
|
"300": "#b9b8e9",
|
|
"400": "#a09adf",
|
|
"500": "#8f81d3",
|
|
"600": "#8772c7",
|
|
"700": "#6d57ab",
|
|
"800": "#59498a",
|
|
"900": "#4a406f"
|
|
},
|
|
"fuschia": {
|
|
"50": "#fdf2ff",
|
|
"100": "#f9e3ff",
|
|
"200": "#f4c6ff",
|
|
"300": "#f099ff",
|
|
"400": "#e85dff",
|
|
"500": "#d721ff",
|
|
"600": "#c200ff",
|
|
"700": "#a200cf",
|
|
"800": "#8600a9",
|
|
"900": "#710689"
|
|
},
|
|
"gray": {
|
|
"50": "#f9fafb",
|
|
"100": "#f6f6f6",
|
|
"200": "#efefef",
|
|
"300": "#e4e4e4",
|
|
"400": "#d1d1d1",
|
|
"500": "#c8c8c8",
|
|
"600": "#b4b4b4",
|
|
"700": "#aaabac",
|
|
"800": "#9a9a9a",
|
|
"900": "#818181"
|
|
},
|
|
"green": {
|
|
"50": "#f0f9f0",
|
|
"100": "#ddefdc",
|
|
"200": "#bbdfbb",
|
|
"300": "#8ec792",
|
|
"400": "#64ad6c",
|
|
"500": "#3c8d47",
|
|
"600": "#2b7037",
|
|
"700": "#225a2d",
|
|
"800": "#1d4825",
|
|
"900": "#193b20"
|
|
},
|
|
"purple": {
|
|
"50": "#f7f3ff",
|
|
"100": "#efe9fe",
|
|
"200": "#e2d6fe",
|
|
"300": "#bfa7f6",
|
|
"400": "#ad8bfa",
|
|
"500": "#8b5cf6",
|
|
"600": "#6d48bf",
|
|
"700": "#6234b1",
|
|
"800": "#4d2d87",
|
|
"900": "#37255d"
|
|
},
|
|
"red": {
|
|
"50": "#fff4f1",
|
|
"100": "#ffe7e1",
|
|
"200": "#ffd1c7",
|
|
"300": "#ffb3a1",
|
|
"400": "#ff866a",
|
|
"500": "#f86847",
|
|
"600": "#e5421d",
|
|
"700": "#c13414",
|
|
"800": "#9f2f15",
|
|
"900": "#842c18"
|
|
},
|
|
"sky": {
|
|
"50": "#f2f8fd",
|
|
"100": "#e5eff9",
|
|
"200": "#c4def3",
|
|
"300": "#90c3e9",
|
|
"400": "#51a2da",
|
|
"500": "#2f88c8",
|
|
"600": "#206ca9",
|
|
"700": "#1b5789",
|
|
"800": "#1a4a72",
|
|
"900": "#1b3f5f"
|
|
},
|
|
"white": "#fff",
|
|
"transparent": "transparent"
|
|
}
|