mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 00:21:19 +00:00
20 lines
555 B
Dart
20 lines
555 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
// Colors - TO FILL WIT CORRECT COLOR
|
|
const kBackgroundColor = Color(0xFFFFFFFF);
|
|
|
|
const kMainGrey = Color(0xFF424242);
|
|
const kSecondGrey = Color(0xFF555457);
|
|
const kTestSecondColor = Color(0xFF2F4858);
|
|
const kMainRed = Color(0xFF8b0000);
|
|
const kSecondRed = Color(0xFF622727);
|
|
const kTextRed = Color(0xFFba0505);
|
|
const kBackgroundGrey = Color(0xFFb5b7b9);
|
|
const kBackgroundSecondGrey = Color(0xFF5b5b63);
|
|
|
|
/*
|
|
const kTextStyle = TextStyle(
|
|
fontSize: 23,
|
|
color: kPrimaryColor,
|
|
fontWeight: FontWeight.w600,
|
|
);*/ |