mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
28 lines
840 B
Dart
28 lines
840 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
const purple80 = Color(0xFFD0BCFF);
|
|
const purpleGrey80 = Color(0xFFCCC2DC);
|
|
const pink80 = Color(0xFFEFB8C8);
|
|
const purple40 = Color(0xFF6650a4);
|
|
const purpleGrey40 = Color(0xFF625b71);
|
|
const pink40 = Color(0xFF7D5260);
|
|
|
|
final kInterTextStyle = GoogleFonts.inter();
|
|
final kRobotoTextStyle = GoogleFonts.roboto();
|
|
final kSettingItemTextStyle = GoogleFonts.roboto(
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
final kSettingItemSubtitleTextStyle = GoogleFonts.roboto(
|
|
fontSize: 13,
|
|
fontWeight: FontWeight.w300,
|
|
);
|
|
|
|
const ghOrg = 'revanced';
|
|
const patchesRepo = 'revanced-patches';
|
|
const integrationsRepo = 'revanced-integrations';
|
|
const patcherRepo = 'revanced-patcher';
|
|
const cliRepo = 'revanced-cli';
|
|
const managerRepo = 'revanced-manager';
|