-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cole
committed
Jul 29, 2024
1 parent
079e029
commit 742a9d2
Showing
13 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { genComponentStyleHook } from '@utils/extend' | ||
|
||
function genBaseStyle (token) { | ||
const { componentCls } = token | ||
return { | ||
[componentCls]: { | ||
|
||
} | ||
} | ||
} | ||
|
||
export default genComponentStyleHook('ProLoading', (token) => { | ||
|
||
return [genBaseStyle(token)] | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// 主题色 | ||
$primary: #1677ff; | ||
|
||
$primary-text: #1677ff; | ||
$primary-text-hover: #4096ff; | ||
$primary-text-active: #0958d9; | ||
// 成功色 | ||
$success-text: #52c41a; | ||
$success-text-hover: #73d13d; | ||
$success-text-active: #389e0d; | ||
// 警戒色 | ||
$warning-text: #faad14; | ||
$warning-text-hover: #ffc53d; | ||
$warning-text-active: #d48806; | ||
// 错误色 | ||
$error-text: #ff4d4f; | ||
$error-text-hover: #ff7875; | ||
$error-text-active: #d9363e; | ||
// 主文本色 | ||
$text: rgba(0, 0, 0, 0.88); | ||
// 次文本色 | ||
$text-secondary: rgba(0, 0, 0, 0.65); | ||
// 三级文本色 | ||
$text-tertiary: rgba(0, 0, 0, 0.45); | ||
// 四级文本色 | ||
$text-quaternary: rgba(0, 0, 0, 0.25); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters