-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.dart
49 lines (48 loc) · 1.09 KB
/
constants.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import 'package:flutter/material.dart';
const String title = 'CSE Organizers';
const Map<String, Map<dynamic, Color>> colors = {
'primary': {
100: Color(0xFFB2E3FF),
300: Color(0xFF58C2FF),
500: Color(0xFF06A4FF),
700: Color(0xFF0474B5),
900: Color(0xFF03456B),
},
'secondary': {
100: Color(0xFFFFF2BD),
300: Color(0xFFFFE270),
500: Color(0xFFFFD429),
700: Color(0xFFE8C125),
900: Color(0xFFB5971D),
},
'neutral': {
50: Color(0xFFF5F6F7),
100: Color(0xFFD6D7D8),
200: Color(0xFFB6BABD),
300: Color(0xFFA5AAAD),
400: Color(0xFF929A9E),
500: Color(0xFF7A8286),
600: Color(0xFF6C777E),
700: Color(0xFF556066),
800: Color(0xFF3C4A52),
900: Color(0xFF23313A),
},
'background': {
'light': Color(0xFFF3F7FE),
'dark': Color(0xFF1B222A),
},
'shades': {
'white': Colors.white,
'black': Colors.black,
},
'fail': {
0: Color(0xFFFAEAEA),
100: Color(0xFFCD2929),
200: Color(0xFFBA3232),
},
'success': {
0: Color(0xFFE9F9E8),
100: Color(0xFF22C014),
200: Color(0xFF32BA7C),
},
};