darkTheme constant

ElTextThemeData const darkTheme

Implementation

static const darkTheme = ElTextThemeData(
  textStyle: TextStyle(
    color: Color.fromRGBO(255, 255, 255, 1.0),
    fontSize: 15,
  ),
  regularStyle: TextStyle(
    color: Color.fromRGBO(237, 237, 237, 1.0),
    fontSize: 15,
  ),
  secondaryStyle: TextStyle(
    color: Color.fromRGBO(214, 214, 214, 1.0),
    fontSize: 14,
  ),
  placeholderStyle: TextStyle(
    color: Color.fromRGBO(186, 186, 186, 1.0),
    fontSize: 12,
  ),
  h1Style: TextStyle(color: Color(0xff8D9095), fontSize: 28),
  h2Style: TextStyle(color: Color(0xff8D9095), fontSize: 24),
  h3Style: TextStyle(color: Color(0xff8D9095), fontSize: 20),
  h4Style: TextStyle(color: Color(0xff8D9095), fontSize: 18),
  h5Style: TextStyle(color: Color(0xff8D9095), fontSize: 16),
  h6Style: TextStyle(color: Color(0xff8D9095), fontSize: 14),
);