Skip to content

Instantly share code, notes, and snippets.

@ahmeedev
Last active June 24, 2022 07:25
Show Gist options
  • Save ahmeedev/84ff0c3c2453a59aebd580523291d8d0 to your computer and use it in GitHub Desktop.
Save ahmeedev/84ff0c3c2453a59aebd580523291d8d0 to your computer and use it in GitHub Desktop.
Flutter templates
import 'package:flutter/material.dart';
const kPrimary = Color(0xFF);
const kPrimaryVariant = Color(0xFF);
const kOnPrimary = Color(0xFF);
const kSecondary = Color(0xFF);
const kSecondaryVariant = Color(0xFF);
const kOnSecondary = Color(0xFF);
const kBackground = Color(0xFF);
const kOnBackground = Color(0xFF);
const kSurface = Color(0xFF);
const kOnSurface = Color(0xFF);
const kError = Color(0xFF);
const kOnError = Color(0xFF);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment