The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
---
# Copyright 2008-2009 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.

# Items of colors support following properties:
#   - foreground: color
#   - background: color
#   - bold:       0 or 1
#   - italic:     0 or 1
#   - eolfilled:  0 or 1
#   - underline:  0 or 1

#
# base style
#
plain:
 foregrounds:
  0: 00007f
 current_line_foreground: aaaaaa
 currentline: 222222
 colors:
  wxSTC_STYLE_DEFAULT:
  wxSTC_STYLE_LINENUMBER:
    foreground: fce94f
    background: 111111
  wxSTC_STYLE_BRACELIGHT:
  wxSTC_STYLE_BRACEBAD:
  wxSTC_STYLE_CONTROLCHAR:
  wxSTC_STYLE_INDENTGUIDE:
  wxSTC_STYLE_CALLTIP:
  wxSTC_STYLE_LASTPREDEFINED:

#
# default style (load after plain)
#
padre:
 background:  000000
 colors:
  wxSTC_STYLE_BRACELIGHT:
   foreground: 00ff00
  wxSTC_STYLE_BRACEBAD:
   foreground: ff0000
  PADRE_BLACK:
   foreground: ffffff
  PADRE_BLUE:
   foreground: 00ff00
  PADRE_RED:
   foreground: ff0000
  PADRE_GREEN:
   foreground: 00ff00
  PADRE_MAGENTA:
   foreground: ff00ff
  PADRE_ORANGE:
   foreground: ffa500
  PADRE_CRIMSON:
   foreground: dc143c
  PADRE_BROWN:
   foreground: f4a460

#
# application/x-perl
#
perl:
 background:  000000
 colors:
  wxSTC_STYLE_BRACELIGHT:
   foreground: 00ff00
  wxSTC_STYLE_BRACEBAD:
   foreground: ff0000
  wxSTC_PL_DEFAULT:
   foreground: ffffff
  wxSTC_PL_ERROR:
   foreground: ff0000
  wxSTC_PL_COMMENTLINE:
   foreground: 007f00
  wxSTC_PL_POD:
   foreground: 7f7f7f
  wxSTC_PL_NUMBER:
   foreground: 007f7f
  wxSTC_PL_WORD:
   foreground: 00007f
  wxSTC_PL_STRING:
   foreground: ff7f00
  wxSTC_PL_CHARACTER:
   foreground: 7f007f
  wxSTC_PL_PUNCTUATION:
   foreground: ffffff
  wxSTC_PL_PREPROCESSOR:
   foreground: 7f7f7f
  wxSTC_PL_OPERATOR:
   foreground: 00007f
  wxSTC_PL_IDENTIFIER:
   foreground: 0000ff
  wxSTC_PL_SCALAR:
   foreground: 7f007f
  wxSTC_PL_ARRAY:
   foreground: 4080ff
  wxSTC_PL_HASH:
   foreground: 0080ff
  wxSTC_PL_SYMBOLTABLE:
   foreground: 00ff00
# missing SCE_PL_VARIABLE_INDEXER (16)
  wxSTC_PL_REGEX:
   foreground: ff007f
  wxSTC_PL_REGSUBST:
   foreground: 7f7f00
  wxSTC_PL_LONGQUOTE:
   foreground: ff7f00
  wxSTC_PL_BACKTICKS:
   foreground: ffaa00
  wxSTC_PL_DATASECTION:
   foreground: ff7f00
  wxSTC_PL_HERE_DELIM:
   foreground: ff7f00
  wxSTC_PL_HERE_Q:
   foreground: 7f007f
  wxSTC_PL_HERE_QQ:
   foreground: ff7f00
  wxSTC_PL_HERE_QX:
   foreground: ffaa00
  wxSTC_PL_STRING_Q:
   foreground: 7f007f
  wxSTC_PL_STRING_QQ:
   foreground: ff7f00
  wxSTC_PL_STRING_QX:
   foreground: ffaa00
  wxSTC_PL_STRING_QR:
   foreground: ff007f
  wxSTC_PL_STRING_QW:
   foreground: 7f007f
# missing:
#define SCE_PL_POD_VERB 31
#define SCE_PL_SUB_PROTOTYPE 40
#define SCE_PL_FORMAT_IDENT 41
#define SCE_PL_FORMAT 42