1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-16 17:55:32 -04:00

Update stitches.config.ts

This commit is contained in:
2022-06-21 06:59:14 -04:00
parent 00e3870998
commit 717e126e5b

View File

@@ -19,7 +19,7 @@ export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme
colors: { colors: {
backgroundInner: "#ffffff", backgroundInner: "#ffffff",
backgroundOuter: "#fcfcfc", backgroundOuter: "#fcfcfc",
backgroundHeader: "rgba(252, 252, 252, 0.7)", backgroundHeader: hexToRgba("#fcfcfc", 0.7),
text: "#202020", text: "#202020",
mediumDark: "#515151", mediumDark: "#515151",
medium: "#5e5e5e", medium: "#5e5e5e",
@@ -29,7 +29,7 @@ export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme
superLight: "#f4f4f4", superLight: "#f4f4f4",
superDuperLight: "#fbfbfb", superDuperLight: "#fbfbfb",
link: "#0e6dc2", link: "#0e6dc2",
linkUnderline: "rgba(14, 109, 194, 0.4)", linkUnderline: hexToRgba("#0e6dc2", 0.4),
success: "#44a248", success: "#44a248",
error: "#ff1b1b", error: "#ff1b1b",
warning: "#f78200", warning: "#f78200",
@@ -76,7 +76,7 @@ export const darkTheme = createTheme({
colors: { colors: {
backgroundInner: "#1e1e1e", backgroundInner: "#1e1e1e",
backgroundOuter: "#252525", backgroundOuter: "#252525",
backgroundHeader: "rgba(37, 37, 37, 0.85)", backgroundHeader: hexToRgba("#252525", 0.85),
text: "#f1f1f1", text: "#f1f1f1",
mediumDark: "#d7d7d7", mediumDark: "#d7d7d7",
medium: "#b1b1b1", medium: "#b1b1b1",
@@ -86,7 +86,7 @@ export const darkTheme = createTheme({
superLight: "#272727", superLight: "#272727",
superDuperLight: "#1f1f1f", superDuperLight: "#1f1f1f",
link: "#88c7ff", link: "#88c7ff",
linkUnderline: "rgba(136, 199, 255, 0.4)", linkUnderline: hexToRgba("#88c7ff", 0.4),
success: "#78df55", success: "#78df55",
error: "#ff5151", error: "#ff5151",
warning: "#f2b702", warning: "#f2b702",