This commit is contained in:
Jason Kulatunga
2020-08-19 16:04:21 -07:00
commit 8482272d45
336 changed files with 197309 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
// -----------------------------------------------------------------------------------------------------
// @ You can use this file to import custom styles.
//
// @ Styles from this file will override anything from 'vendors.scss' file allowing customizations and
// modifications of third party libraries.
// -----------------------------------------------------------------------------------------------------
File diff suppressed because it is too large Load Diff
+68
View File
@@ -0,0 +1,68 @@
// @formatter:off
// -----------------------------------------------------------------------------------------------------
// @ Treo themes map. Do NOT rename the '$treo-themes' variable!!!
// This file meant to be imported more than once by @treo, do NOT put anything heavy here!
// The map contains Angular Material themes that will be generated for your app.
//
// @ Each key represents a class name that can be added to the 'body' tag to enable the theme globally.
// If added to other elements, themes will be applied to that element's scope only.
// Keys must start with 'treo-theme-'.
//
// @ Each value is an Angular Material theme, generated and modified by using 'treo-light-theme' or
// 'treo-dark-theme' functions which uses 'mat-light-theme' and 'mat-dark-theme' functions respectively
// to generate the themes.
//
// @ 'treo-palette' values are coming from '$treo-color' map which can be found in
// '@treo/styles/utilities/_colors.scss'.
// -----------------------------------------------------------------------------------------------------
$treo-themes: (
// -----------------------------------------------------------------------------------------------------
// @ User themes - Add/Remove/Modify these for your own likings and needs
// -----------------------------------------------------------------------------------------------------
// Dark theme
'treo-theme-dark': treo-dark-theme(
treo-palette('teal'),
treo-palette('pink', 500),
treo-palette('red', 400)
),
// Light theme
'treo-theme-light': treo-light-theme(
treo-palette('indigo', 600),
treo-palette('cool-gray', 800),
treo-palette('red', 700)
),
// -----------------------------------------------------------------------------------------------------
// @ Dark & Light themes - DO NOT REMOVE
// These are generic themes which are useful if you want to adjust the theming of certain container
// or an element independently from the app's global theme.
//
// @ Example: If you want to have a dark toolbar in your light themed app, adding '.theme-dark' class
// to the toolbar will apply a dark theme to every element that stays inside it without needing any
// extra work. Without the '.theme-dark' class, adding just a dark background color won't automatically
// make the toolbar elements colored correctly, which will break the styling of the toolbar.
//
// @ Important note: '.theme-light' classes will always override '.theme-dark' classes because how CSS
// works. Since 'theme-light' definition comes after the 'theme-dark' definition, CSS classes and
// helpers will also be generated with that order which will cause that behavior. To overcome this
// issue, never nest '.theme-light' and '.theme-dark' classes. Use them as siblings!
// -----------------------------------------------------------------------------------------------------
// Dark theme - DO NOT REMOVE
'theme-dark': treo-dark-theme(
treo-palette('white'),
treo-palette('gray', 800),
treo-palette('red', 800)
),
// Light theme - DO NOT REMOVE
'theme-light': treo-light-theme(
treo-palette('black'),
treo-palette('gray', 800),
treo-palette('red', 800)
)
);
+20
View File
@@ -0,0 +1,20 @@
// -----------------------------------------------------------------------------------------------------
// @ You can use this file to import styles from third party libraries.
//
// @ It's important to put them here because anything imported from this file can be overridden by
// Treo which allows having out-of-the-box support for certain libraries. They can also be
// overridden from 'styles.scss' file which allows you to override and make any third party library
// that Treo doesn't support out-of-the-box visually compatible with your application.
// -----------------------------------------------------------------------------------------------------
// FullCalendar
@import '~@fullcalendar/core/main.css';
@import '~@fullcalendar/daygrid/main.css';
@import '~@fullcalendar/timegrid/main.css';
@import '~@fullcalendar/list/main.css';
// Perfect scrollbar
@import '~perfect-scrollbar/css/perfect-scrollbar.css';
// Quill
@import '~quill/dist/quill.snow.css';