Add files via upload

This commit is contained in:
2024-07-17 14:41:27 +05:00
committed by GitHub
parent 3fef1624db
commit 0cb207bd7c
60 changed files with 2325 additions and 0 deletions

17
src/enums/enums.ts Normal file
View File

@@ -0,0 +1,17 @@
export enum ELinkPath {
home = '/',
}
export enum EScrollId {
download = 'download',
}
export enum EColor {
white = '#fff',
black = '#0f0f0f',
lightBlack = 'rgb(38 38 38)',
lightGray = 'rgb(212 212 212)',
red = 'rgb(245 65 66)',
purple = 'rgb(145, 107, 227)',
purpleTransparent = 'rgba(145, 107, 227, 0.250)',
}