slight adjustment

This commit is contained in:
caranicas 2022-09-30 19:07:16 -04:00
parent 3da75494b0
commit 4710d18e33
7 changed files with 12 additions and 12 deletions

View File

@ -9,7 +9,7 @@ export const card = recipe({
},
variants: {
baking: {
backing: {
normal: {
background: vars.backgroundMain,
},
@ -35,7 +35,7 @@ export const card = recipe({
},
},
defaultVariants: {
baking: "light",
backing: "light",
level: 'flat',
rounded: true,
},

View File

@ -40,7 +40,7 @@ export const tabPanelStyles = recipe({
},
variants: {
baking: {
backing: {
normal: {
background: vars.backgroundMain,
},

View File

@ -1,7 +1,6 @@
import React, { useEffect } from "react";
import { useCreateUI } from "../creationPanelUIStore";
import { PanelBox } from "../../../../styles/shared.css";
import {
card
@ -49,7 +48,7 @@ export default function AdvancedSettings() {
<div className={card(
{
level: 1,
baking: 'normal'
backing: 'plain'
}
)}>
<button

View File

@ -5,7 +5,7 @@ import { card } from "../../../_recipes/card.css";
export const CreationBasicMain = style([
card({
baking: 'normal',
backing: 'normal',
level: 1
}), {
position: "relative",

View File

@ -81,7 +81,7 @@ export default function ImageModifers() {
<div className={card(
{
level: 1,
baking: 'normal'
backing: 'normal'
}
)}>
<button

View File

@ -13,7 +13,7 @@ import {
export const QueueItemMain = style([card(
{
baking: "dark",
backing: "dark",
level: 1
}
), {

View File

@ -79,22 +79,23 @@ const app = createGlobalTheme(":root", {
// 6 0degree color difference
// step downs
brandHue: '265', // purple
secondaryHue: '205', // light blue
secondaryHue: '20', // light blue
tertiaryHue: '145', // grass green
// step ups
errorHue: '0', // magenta
errorHue: '0',
warningHue: '25', // orange
successHue: '85', // green
colorMod: {
saturation: {
normal: "70%",
bright: "100%",
normal: "60%",
dimmed: "50%",
dim: "30%",
},
lightness: {
normal: "50%",
normal: "45%",
bright: "60%",
dim: "40%",
},