You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
663 B
22 lines
663 B
import 'package:flutter/material.dart';
|
|
|
|
// All needed color in the project
|
|
|
|
const primaryColor = Color(0xFF643BF4);
|
|
const secondaryColor = Color(0xFF1C1B23);
|
|
const bgColor = Color(0xFF0C0C0C);
|
|
const grayColor = Color(0xFF242424);
|
|
const profileBttnColor = Color(0xFF232323);
|
|
const warningBttnColor = Color(0xFF141414);
|
|
const disabledBttnColor = Color(0xFF1F1B2E);
|
|
const bgTextField = Color(0xFF1C1B23);
|
|
const strokeTextField = Color(0xFF373546);
|
|
const unactiveFeed = Color(0xFF848484);
|
|
const gradiantPost = Color(0xFF0D0D0D);
|
|
const bgModal = Color(0xFF1E1E1E);
|
|
const bgComment = Color(0xFF222222);
|
|
|
|
// All constants important too us
|
|
|
|
const defaultPadding = 30.0;
|