mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +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,
|
|
}; |