rgieseke / base16-textadept

Base16 themes for the Textadept editor
59 stars 10 forks source link

Suggestion: little change in the fold margin to improve reading comfort #2

Closed paaguti-work closed 8 years ago

paaguti-work commented 8 years ago

The following small changes improves readability of the screen in dark themes a lot IMvHO

buffer:set_fold_margin_colour(true, property_int['color.base01'])
buffer:set_fold_margin_hi_colour(true, property_int['color.base02'])

Checked with:

ui.set_theme(
  'base16-twilight-dark',
  {
    font = OSX and 'Monaco' or 'Ubuntu Mono',
    fontsize = OSX and 14 or 13,
    ['style.linenumber'] = 'fore:%(color.base07),back:%(color.base02)',
  })

in my init.lua

rgieseke commented 8 years ago

Thank you! Not sure about changing the defaults but I added your example to the README so others can change their themes as well.