```bash
; Typora
;Quickly increase font color; SendInput {Text}Solve the problem of Chinese input method#IfWinActive ahk_exe
{
; Ctrl+Alt+o Orange^!o::addFontColor("orange")
; Ctrl+Alt+r red^!r::addFontColor("red")
; Ctrl+Alt+b Light blue^!b::addFontColor("cornflowerblue")
}
;Quickly increase font coloraddFontColor(color){
clipboard := "" ;Clear the clipboard
Send{ctrl down}c{ctrl up} ;copy
SendInput{TEXT}<font color='%color%'>
SendInput {ctrl down}v{ctrl up} ;PasteIf(clipboard = ""){
SendInput {TEXT}</font> ;Typora will not replenish automatically here}else{
SendInput {TEXT}</ ;Automatic completion tags in Typora}
}