You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cg/src/design-tokens.cg

39 lines
532 B
Plaintext

colors = {
primary = "#0066cc",
primaryDark = "#0052a3",
danger = "#dc3545",
success = "#28a745",
bg = "#ffffff",
bgGray = "#f8f9fa",
text = "#212529",
textLight = "#6c757d",
border = "#dee2e6"
};
spacing = {
xs = 4,
sm = 8,
md = 16,
lg = 32,
xl = 64
};
primaryStyle = {
bg = colors.primary,
fg = colors.bg,
px = spacing.md,
py = spacing.sm
};
dangerStyle = {
bg = colors.danger,
fg = colors.bg,
px = spacing.md,
py = spacing.sm
};
theme = {
colors = colors,
spacing = spacing
};