slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
24 lines (23 loc) • 833 B
JavaScript
export const bgGradient = "linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1)";
export const bgGradientGrass = "background-image: linear-gradient(to bottom, #013a00, #23630a, #4a8f12, #76bc15, #a8eb12);";
export const dealBtnStyle = {
display: "flex",
alignItems: "center",
fontFamily: "inherit",
cursor: "pointer",
fontWeight: "500",
fontSize: "17px",
padding: "0.8em 1.5em",
color: "white",
background: "linear-gradient(to right, #0f0c29, #302b63, #24243e)",
border: "none",
letterSpacing: "0.05em",
borderRadius: "16px",
margin: "3px auto",
};
export const dealBtnDisabledStyle = {
...dealBtnStyle,
opacity: 0.5,
cursor: "not-allowed",
};
export const catMultiColor = "#7CB9E8";