Skip to content

Instantly share code, notes, and snippets.

View groundfeel's full-sized avatar

Artwounds LTD groundfeel

View GitHub Profile
@groundfeel
groundfeel / app_style.dart
Created July 26, 2021 17:36 — forked from Aldo111/app_style.dart
Flutter E-Store Tutorial Part 3 Files
// constants/app_style.dart
import 'package:flutter/material.dart';
abstract class AppStyle {
static const primaryColor = Color(0xFFFDFDFD);
static const secondaryColor = Color(0xFF252525);
static const backgroundGrey = Color(0xFF383838);
static const captionColor = Color(0xFFbababa);
/* CHAT STYLES */
* {
font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
letter-spacing: 0.5px;
}
.ce-chat-list {
background-color: rgb(240, 240, 240) !important;