Upgrade Alias-Agent to 0.2.0 (#51)
Upgrade Alias-Agent to 0.2.0 --------- Co-authored-by: ZiTao-Li <zitao.l@alibaba-inc.com> Co-authored-by: xieyxclack <yuexiang.xyx@alibaba-inc.com> Co-authored-by: Zexi Li <tomleeze@qq.com> Co-authored-by: SSSuperDan <dlaura2218@gmail.com> Co-authored-by: lalaliat <78087788+lalaliat@users.noreply.github.com> Co-authored-by: jinli.yl <jinli.yl@alibaba-inc.com> Co-authored-by: Dengjiaji <dengjiaji.djj@alibaba-inc.com> Co-authored-by: 于南 <zengtianjing.ztj@alibaba-inc.com> Co-authored-by: JustinDing <166603159+sleepy-bird-world@users.noreply.github.com> Co-authored-by: y1y5 <269557841@qq.com> Co-authored-by: 柳佚 <yly287738@alibaba-inc.com> Co-authored-by: LiangguiWeng <347185100@qq.com> Co-authored-by: 潜星 <zhijian.mzj@alibaba-inc.com> Co-authored-by: StCarmen <1106135234@qq.com> Co-authored-by: LuYi <yilu_2000@outlook.com> Co-authored-by: 刺葳 <ciwei.cy@alibaba-inc.com>
This commit is contained in:
54
alias/frontend/tailwind.config.cjs
Normal file
54
alias/frontend/tailwind.config.cjs
Normal file
@@ -0,0 +1,54 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
darkMode: 'class',
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
page: {
|
||||
bg: 'var(--page-bg)',
|
||||
container: 'var(--page-container)',
|
||||
content: 'var(--page-content)',
|
||||
},
|
||||
text: {
|
||||
primary: 'var(--text-primary)',
|
||||
secondary: 'var(--text-secondary)',
|
||||
tertiary: 'var(--text-tertiary)',
|
||||
},
|
||||
border: {
|
||||
input: 'var(--border-input)',
|
||||
option: 'var(--border-option)',
|
||||
divider: 'var(--border-divider)',
|
||||
},
|
||||
step: {
|
||||
bg: 'var(--step-bg)',
|
||||
control: 'var(--step-control)',
|
||||
progress: 'var(--step-progress)',
|
||||
}
|
||||
},
|
||||
fontFamily: {
|
||||
'alibaba': ['Alibaba PuHuiTi 2.0', 'sans-serif'],
|
||||
'pingfang': ['PingFang SC', 'sans-serif'],
|
||||
},
|
||||
boxShadow: {
|
||||
'input': '0px 12px 24px -16px rgba(54, 54, 73, 0.04), 0px 12px 40px 0px rgba(51, 51, 71, 0.08), 0px 0px 1px 0px rgba(44, 44, 54, 0.02)',
|
||||
},
|
||||
keyframes: {
|
||||
fadeIn: {
|
||||
'from': { opacity: '0', transform: 'translateY(10px)' },
|
||||
'to': { opacity: '1', transform: 'translateY(0)' }
|
||||
}
|
||||
},
|
||||
animation: {
|
||||
fadeIn: 'fadeIn 0.3s ease-out forwards'
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
require('tailwind-scrollbar-hide'),
|
||||
require('tailwind-scrollbar')
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user