style(ui): 为应用组件统一添加自定义字体样式

This commit is contained in:
richarjiang
2025-11-27 09:22:55 +08:00
parent 518282ecb8
commit 01388a5c4f
16 changed files with 103 additions and 11 deletions

View File

@@ -464,6 +464,7 @@ const styles = StyleSheet.create({
fontWeight: '800',
color: '#1a1a1a',
letterSpacing: -0.5,
fontFamily: 'AliBold',
},
calendarIconButton: {
padding: 4,
@@ -493,6 +494,7 @@ const styles = StyleSheet.create({
fontWeight: '700',
color: '#7c3aed',
letterSpacing: 0.2,
fontFamily: 'AliBold',
},
daysContainer: {
paddingBottom: 8,
@@ -537,10 +539,12 @@ const styles = StyleSheet.create({
color: '#8e8e93',
marginBottom: 2,
letterSpacing: 0.1,
fontFamily: 'AliBold',
},
dayLabelSelected: {
color: '#1a1a1a',
fontWeight: '800',
fontFamily: 'AliBold',
},
dayLabelDisabled: {
color: '#c7c7cc',
@@ -550,10 +554,12 @@ const styles = StyleSheet.create({
fontWeight: '700',
color: '#8e8e93',
letterSpacing: -0.2,
fontFamily: 'AliBold',
},
dayDateSelected: {
color: '#1a1a1a',
fontWeight: '800',
fontFamily: 'AliBold',
},
dayDateDisabled: {
color: '#c7c7cc',
@@ -607,11 +613,13 @@ const styles = StyleSheet.create({
fontWeight: '700',
fontSize: 14,
letterSpacing: 0.1,
fontFamily: 'AliBold',
},
modalBtnTextPrimary: {
color: '#FFFFFF',
fontWeight: '700',
fontSize: 14,
letterSpacing: 0.1,
fontFamily: 'AliBold',
},
});