from openpyxl.styles import Font
font=Font(
name='微软雅黑', #字体
size=15, #字体大小
color="0000FF", #字体颜色,用16进制rgb表示
bold=True, #是否加粗
italic=True, #是否斜体
strike=None, #是否使用删除线
underline=None, #下划线 可选‘double/single等’
)
alignment_left=Alignment(
horizontal='left', #水平对齐,可选general/left/center/right/fill等
vertical='top', #垂直对齐,可选top,center,bottom,justify,distributed
wrap_text=True, #是否自动换行
shrink_to_fit=False, #是否缩小字体填充
indent=0) #缩进值
side=Side(
style='medium', #边框样式 可选dashDot,dashDotDot,dashed,dotted,double
color='000000' #边框样式
)
#边框调用
y.border=Border(
top=side,
bottom=side,
left=side,
right=side,
diagonal=side
)
fill=PatternFill(
patternType='solid', #填充类型 可选none,solid,darkGray,mediumGray等
fgColor='F562A4', #前景色,16进制
bgColor='0000FF' #背景色
)
红色: #FF0000
绿色:#008000
蓝色: #0000FF
黑色: #000000
棕色: #A52A2A
金色: #FFD700
灰色: #808080
橙色:#FFA500
白色: #FFFFFF
黄色: #FFFF00
麦色: #F5DEB3
粉色: #FFC0CB
网友评论