chore: initial commit
This commit is contained in:
32
tailwind.config.js
Normal file
32
tailwind.config.js
Normal file
@@ -0,0 +1,32 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
'kingdee-blue': '#2386EE',
|
||||
'kingdee-dark': '#333333',
|
||||
'kingdee-bg': '#F7FAFF',
|
||||
'kingdee-light-blue': '#ECF5FF',
|
||||
'kingdee-text-gray': '#999999',
|
||||
'kingdee-text-main': '#000000',
|
||||
'kingdee-border': '#D8D8D8',
|
||||
},
|
||||
fontFamily: {
|
||||
'bebas': ['Bebas Neue', 'sans-serif'],
|
||||
'pingfang': ['PingFang SC', '-apple-system', 'BlinkMacSystemFont', 'Microsoft YaHei', 'sans-serif'],
|
||||
},
|
||||
boxShadow: {
|
||||
'card': '0px 2px 20px 0px rgba(100, 135, 172, 0.15)',
|
||||
},
|
||||
backgroundImage: {
|
||||
'gradient-main': 'linear-gradient(90deg, rgba(36, 133, 238, 1) 0%, rgba(0, 174, 239, 1) 100%)',
|
||||
'gradient-border': 'linear-gradient(180deg, rgba(236, 245, 255, 1) 0%, rgba(255, 255, 255, 1) 100%)',
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user