mirror of
https://github.com/youzan/vant.git
synced 2026-05-08 01:07:46 +08:00
18 lines
617 B
TypeScript
18 lines
617 B
TypeScript
// color
|
|
export const RED = '#ee0a24';
|
|
export const BLUE = '#1989fa';
|
|
export const GREEN = '#07c160';
|
|
export const WHITE = '#fff';
|
|
export const GRAY = '#c9c9c9';
|
|
export const GRAY_DARK = '#969799';
|
|
|
|
// border
|
|
export const BORDER = 'van-hairline';
|
|
export const BORDER_TOP = `${BORDER}--top`;
|
|
export const BORDER_LEFT = `${BORDER}--left`;
|
|
export const BORDER_RIGHT = `${BORDER}--right`;
|
|
export const BORDER_BOTTOM = `${BORDER}--bottom`;
|
|
export const BORDER_SURROUND = `${BORDER}--surround`;
|
|
export const BORDER_TOP_BOTTOM = `${BORDER}--top-bottom`;
|
|
export const BORDER_UNSET_TOP_BOTTOM = `${BORDER}-unset--top-bottom`;
|