gravityDark static method

SyntaxTheme gravityDark()

Implementation

static SyntaxTheme gravityDark() {
  return SyntaxTheme(
      linesCountColor: const Color(0xFFFFFFFF).withOpacity(.8),
      backgroundColor: const Color(0xFF202734),
      baseStyle: const TextStyle(color: const Color(0xFFFFFFFF)),
      numberStyle: const TextStyle(color: const Color(0xFF68B3BD)),
      commentStyle: const TextStyle(color: const Color(0xFF666562)),
      keywordStyle: const TextStyle(color: const Color(0xFFC8345A)),
      stringStyle: const TextStyle(color: const Color(0xFFECB760)),
      punctuationStyle: const TextStyle(color: const Color(0xFF9CC266)),
      classStyle: const TextStyle(color: const Color(0xFFEA3971)),
      constantStyle: const TextStyle(color: const Color(0xFFB77ADA)),
      zoomIconColor: const Color(0xFFF8F6EB));
}