defaultLightTheme static method

dynamic defaultLightTheme()

light theme

Implementation

static defaultLightTheme() => const AnySyntaxHighlighterTheme(
    classStyle: TextStyle(
      color: Color.fromRGBO(1, 86, 86, 1),
    ),
    staticStyle: TextStyle(
      color: Color.fromRGBO(168, 1, 57, 1),
      fontStyle: FontStyle.italic,
    ),
    constructor: TextStyle(
      color: Color.fromRGBO(129, 72, 0, 1),
    ),
    multilineComment: TextStyle(
      color: Color.fromRGBO(117, 103, 103, 1),
      fontStyle: FontStyle.italic,
    ),
    comment: TextStyle(
      color: Color.fromRGBO(117, 103, 103, 1),
      fontStyle: FontStyle.italic,
    ),
    keyword: TextStyle(
      color: Color.fromRGBO(4, 51, 129, 1),
      fontWeight: FontWeight.bold,
    ),
    identifier: TextStyle(
      color: Color.fromRGBO(0, 0, 0, 1),
    ),
    function: TextStyle(
      color: Color.fromRGBO(1, 121, 62, 1),
    ),
    number: TextStyle(
      color: Color.fromRGBO(69, 69, 1, 1),
    ),
    string: TextStyle(
      color: Color.fromRGBO(11, 63, 1, 1),
    ),
    operator: TextStyle(
      color: Color.fromRGBO(153, 4, 21, 1),
    ),
    separator: TextStyle(
      color: Color.fromRGBO(0, 0, 0, 1),
    ),
    method: TextStyle(
      color: Color.fromRGBO(77, 2, 140, 1),
    ),
    private: TextStyle(
      color: Color.fromRGBO(77, 57, 57, 1),
    ),
    lineNumber: TextStyle(color: Colors.white),
    decoration: BoxDecoration(color: Color.fromRGBO(255, 255, 255, 0)),
    fontFeatures: [FontFeature.slashedZero()]);