const theme: Theme = {
Global: {
fonts: {
fontFamily: "Inter, sans-serif",
fontUrls: [
"https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap"
],
},
colors: {
core: {
primary: "#0066CC",
neutral: "#666666",
error: "#CC0000",
warning: "#FF9900",
success: "#00AA00",
},
text: {
primary: "#000000",
secondary: "#666666",
},
background: {
application: "#FFFFFF",
content: "#F5F5F5",
},
},
},
Components: {
Button: {
Primary: {
backgroundColor: "#0066CC",
color: "#FFFFFF",
borderRadius: "4px",
},
},
},
};