mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @outDir: ./out
|
||
|
// @target: es6
|
||
|
// @declaration: true
|
||
|
// @filename: index.js
|
||
|
export const colors = {
|
||
|
royalBlue: "#6400e4",
|
||
|
};
|
||
|
|
||
|
export const brandColors = {
|
||
|
purple: colors.royalBlue,
|
||
|
};
|