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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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