mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-17 19:05:32 -04:00
Update stitches.config.ts
This commit is contained in:
@@ -19,7 +19,7 @@ export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme
|
||||
colors: {
|
||||
backgroundInner: "#ffffff",
|
||||
backgroundOuter: "#fcfcfc",
|
||||
backgroundHeader: "rgba(252, 252, 252, 0.7)",
|
||||
backgroundHeader: hexToRgba("#fcfcfc", 0.7),
|
||||
text: "#202020",
|
||||
mediumDark: "#515151",
|
||||
medium: "#5e5e5e",
|
||||
@@ -29,7 +29,7 @@ export const { styled, css, getCssText, globalCss, keyframes, createTheme, theme
|
||||
superLight: "#f4f4f4",
|
||||
superDuperLight: "#fbfbfb",
|
||||
link: "#0e6dc2",
|
||||
linkUnderline: "rgba(14, 109, 194, 0.4)",
|
||||
linkUnderline: hexToRgba("#0e6dc2", 0.4),
|
||||
success: "#44a248",
|
||||
error: "#ff1b1b",
|
||||
warning: "#f78200",
|
||||
@@ -76,7 +76,7 @@ export const darkTheme = createTheme({
|
||||
colors: {
|
||||
backgroundInner: "#1e1e1e",
|
||||
backgroundOuter: "#252525",
|
||||
backgroundHeader: "rgba(37, 37, 37, 0.85)",
|
||||
backgroundHeader: hexToRgba("#252525", 0.85),
|
||||
text: "#f1f1f1",
|
||||
mediumDark: "#d7d7d7",
|
||||
medium: "#b1b1b1",
|
||||
@@ -86,7 +86,7 @@ export const darkTheme = createTheme({
|
||||
superLight: "#272727",
|
||||
superDuperLight: "#1f1f1f",
|
||||
link: "#88c7ff",
|
||||
linkUnderline: "rgba(136, 199, 255, 0.4)",
|
||||
linkUnderline: hexToRgba("#88c7ff", 0.4),
|
||||
success: "#78df55",
|
||||
error: "#ff5151",
|
||||
warning: "#f2b702",
|
||||
|
Reference in New Issue
Block a user