A Dart package for finding complimentary colors.
- Add this to your package's
pubspec.yaml
file:
dependencies:
complimentary_colors: any
- Get the package using your IDE's GUI or via command line with
$ pub get
- Import the
complimentary_colors.dart
file in your app
import 'package:complimentary_colors/complimentary_colors.dart';
To get the complimentary color of a hex value
HexColor givenColor = new HexColor("FF0000");
HexColor complimentaryColor = CalculateComplimentaryColor.fromHex(givenColor)
To get the complimentary color of a hsl value
HslColor givenColor = new HslColor(270, 100, 100);
HslColor complimentaryColor = CalculateComplimentaryColor.fromHsl(givenColor)
To get the complimentary color of a rgb value
RgbColor givenColor = new RgbColor(270, 100, 100);
RgbColor complimentaryColor = CalculateComplimentaryColor.fromRgb(givenColor)