#sprint-1

This commit is contained in:
User3 2025-05-26 10:15:48 +03:00
parent a1144aff19
commit 615cb47a25
3 changed files with 19 additions and 0 deletions

View File

@ -9,6 +9,8 @@ environment:
dependencies:
flutter:
sdk: flutter
ui_kit:
path: ..
dev_dependencies:
flutter_test:

14
lib/colors.dart Normal file
View File

@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
const primaryColor = Color.fromRGBO(26, 111, 238, 1);
const primaryHoverColor = Color.fromRGBO(197, 210, 255, 1);
const blackColor = Color.fromRGBO(45, 44, 44, 1);
const whiteColor = Color.fromRGBO(247, 247, 247, 1);
const errorColor = Color.fromRGBO(255, 70, 70, 1);
const successColor = Color.fromRGBO(255, 70, 70, 1);
const inputBgColor = Color.fromRGBO(247, 247, 250, 1);
const inputStrokeColor = Color.fromRGBO(230, 230, 230, 1);
const inputIcon = Color.fromRGBO(191, 199, 209, 1);
const placeholderColor = Color.fromRGBO(191, 199, 209, 1);
const descColor = Color.fromRGBO(135, 135, 161, 1);
const cardColor = Color.fromRGBO(135, 135, 161, 1);

3
lib/fonts.dart Normal file
View File

@ -0,0 +1,3 @@
import 'package:flutter/painting.dart';
final title1Semibold = TextStyle();