Files
payload/examples/localization/src/cssVariables.js
2024-12-22 19:21:56 +00:00

20 lines
402 B
JavaScript

// Keep these in sync with the CSS variables in the `_css` directory
const cssVariables = {
breakpoints: {
l: 1440,
m: 1024,
s: 768,
},
colors: {
base0: 'rgb(255, 255, 255)',
base100: 'rgb(235, 235, 235)',
base500: 'rgb(128, 128, 128)',
base850: 'rgb(34, 34, 34)',
base1000: 'rgb(0, 0, 0)',
error500: 'rgb(255, 111, 118)',
},
}
export default cssVariables