# tidRich_Zenburn - Made by chat. # Zenburn, tweaked by tidbit ported to SciTE by budRich # # Update: 2011-08-10 # Stole the top part from nimdAHK's post, thanks mate! # Added global default style. Now other filetypes except AHK looks goodie. # Last lines are styles for ini and properties files. # # Check out the SciTE Styles forum thread. # http://www.autohotkey.com/forum/viewtopic.php?t=75188 # Global default styles for all languages style.*.32=fore:#CCCCCC,back:#3F3F3F,font:Bitstream Vera Sans Mono,size:9 # Caret caret.fore=#FFFFFF caret.line.back=#444444 # Selection # 00005e BSoD blue. selection.back=#00005e selection.fore=#FFFFFF # Line number style.*.33=fore:#E4E4E4,back:#333333,$(font.base) # Fold Margin fold.margin.colour=#222222 fold.margin.highlight.colour=#222222 # Base (background, base font) style.ahk1.32=back:#3F3F3F # Default (everything not below: spaces, untyped parameters) style.ahk1.0=fore:#EDEDCD,bold # Line comment (; syntax) style.ahk1.1=fore:#7F9F7F,italics # Block comment (/*...*/ syntax) style.ahk1.2=fore:#7F9F7F,italics # Escape (`x) style.ahk1.3=fore:#93CCB8,bold # Operator style.ahk1.4=fore:#97C0EB,bold # Expression assignement operator style.ahk1.5=fore:#97C0EB,bold # String style.ahk1.6=fore:#CC9893,bold # Number style.ahk1.7=fore:#F79B57,bold # Identifier (variable & function call) # Not used by the lexer but by the style below and by hotkeys style.ahk1.8=fore:#93CCB8 # Variable dereferencing %varName% style.ahk1.9=$(style.ahk1.8) # Label & Hotstrings (& Function definition?). Also defines a bit of style for hotkeys. style.ahk1.10=fore:#F09EC0 # Keyword - Flow of control style.ahk1.11=fore:#E4EDED,bold,italics # Keyword - Commands style.ahk1.12=fore:#CDBFA3,bold # Keyword - Functions style.ahk1.13=fore:#7CC8CF,italics # Keyword - Directives style.ahk1.14=fore:#7CC8CF,bold,italics # Keyword - Keys & buttons style.ahk1.15=fore:#CB8DD9,bold # Keyword - Built-in Variables style.ahk1.16=fore:#000080,bold,italics # Keyword - special parameters ("Keywords") style.ahk1.17=fore:#E4EDED # Keyword - User defined style.ahk1.18=fore:#0000FF,bold # Variable keyword (built-in) dereferencing %A_xxx% style.ahk1.19=$(style.ahk1.16) # Error (unclosed string, unknown operator, invalid dereferencing, etc.) style.ahk1.20=back:#111111,fore:#ff0000 # .ini and .properties files # Default style.props.0=$(style.ahk1.0) # Comment style.props.1=$(style.ahk1.1) # Section style.props.2=$(style.ahk1.10),eolfilled # Assignment operator style.props.3=$(style.ahk1.5) # Key style.props.5=$(style.ahk1.8)