2dc41b7e24
- fixed issues
70 lines
2.0 KiB
Dart
70 lines
2.0 KiB
Dart
// GCG.MeinCantor - Die Schulplattform für Cantorianer.
|
|
// Copyright (C) 2021-2022 Georg-Cantor-Gymnasium Halle (Saale)
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
Map colors = {
|
|
'Bio': Colors.green,
|
|
'bio1': Colors.green,
|
|
'bioL1': Colors.green,
|
|
'Mat': Colors.indigo,
|
|
'matL1': Colors.indigo,
|
|
'matL2': Colors.indigo,
|
|
'matL3': Colors.indigo,
|
|
'Deu': Colors.red,
|
|
'deu1': Colors.red,
|
|
'deu2': Colors.red,
|
|
'deu3': Colors.red,
|
|
'deuL1': Colors.red,
|
|
'Kun': Colors.deepPurple,
|
|
'kun1': Colors.deepPurple,
|
|
'kun2': Colors.deepPurple,
|
|
'kun3': Colors.deepPurple,
|
|
'Geo': Colors.brown,
|
|
'geo1': Colors.brown,
|
|
'Lat': Colors.teal,
|
|
'lat1': Colors.teal,
|
|
'lat2': Colors.teal,
|
|
'lat3': Colors.teal,
|
|
'Che': Colors.lightGreen,
|
|
'che1': Colors.lightGreen,
|
|
'cheL1': Colors.lightGreen,
|
|
'Eng': Colors.amber,
|
|
'eng1': Colors.amber,
|
|
'eng2': Colors.amber,
|
|
'eng3': Colors.amber,
|
|
'engL1': Colors.amber,
|
|
'engL2': Colors.amber,
|
|
'Phy': Colors.cyan,
|
|
'phy1': Colors.cyan,
|
|
'phy2': Colors.cyan,
|
|
'phy3': Colors.cyan,
|
|
'Inf': Colors.tealAccent[400],
|
|
'Mus': Colors.deepOrange,
|
|
'mus1': Colors.deepOrange,
|
|
'mus2': Colors.deepOrange,
|
|
'mus3': Colors.deepOrange,
|
|
'Lme': Colors.amber[700],
|
|
'Ges': Colors.grey,
|
|
'ges1': Colors.grey,
|
|
'ges2': Colors.grey,
|
|
'ges3': Colors.grey,
|
|
'Spa': Colors.redAccent,
|
|
'Frz': Colors.amberAccent[700],
|
|
'frz1': Colors.amberAccent[700],
|
|
'---': Colors.white
|
|
};
|