@import '~@angular/material/theming';
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();
// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue.
$tutorial-primary: mat-palette($mat-green, 600);
$tutorial-accent:  mat-palette($mat-blue-grey);
$tutorial-warn:    mat-palette($mat-deep-orange);
// Create the theme object (a Sass map containing all of the palettes).
$tutorial-theme: mat-light-theme($tutorial-primary, $tutorial-accent, $tutorial-warn);




// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($tutorial-theme);


$toturial-checkbox: mat-palette($mat-gray, 600);
$toturial-checkbox-checked: mat-palette($mat-green, 600);

.mat-pseudo-checkbox {
    background: map-get($toturial-checkbox, 500);
}

  .mat-pseudo-checkbox-checked{
      background: map-get($toturial-checkbox-checked, 500);
}


  

@mixin toturial2($radius) {
   color:red;
            border-radius: $radius;
  }
  
  .toturial2-scss { @include toturial2(10px); }