Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

App set up #32

Merged
merged 6 commits into from
Feb 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion ionic.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@
"name": "stockpile",
"app_id": "",
"v2": true,
"typescript": true
"typescript": true,
"proxies": [
{
"path": "/api",
"proxyUrl": "http://localhost:5000"
}
]
}
41 changes: 22 additions & 19 deletions src/theme/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@ $font-path: "../assets/fonts";
@import "ionic.globals";


// Shared Variables
// --------------------------------------------------
// To customize the look and feel of this app, you can override
// the Sass variables found in Ionic's source scss files.
// To view all the possible Ionic variables, see:
// http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/




// Named Color Variables
// --------------------------------------------------
// Named colors makes it easy to reuse colors on various components.
Expand All @@ -24,26 +14,39 @@ $font-path: "../assets/fonts";
// The "primary" color is the only required color in the map.

$colors: (
primary: #387ef5,
secondary: #32db64,
danger: #f53d3d,
light: #f4f4f4,
dark: #222
primary: #6d435a,
secondary: #b1ede8,
danger: #ff6978,
light: #fffcf9,
dark: #352d39
);


// App iOS Variables
// Shared Variables
// --------------------------------------------------
// iOS only Sass variables can go here
// To customize the look and feel of this app, you can override
// the Sass variables found in Ionic's source scss files.
// To view all the possible Ionic variables, see:
// http://ionicframework.com/docs/v2/theming/overriding-ionic-variables/

$tabs-background: color($colors, primary);
$toolbar-background: color($colors, primary);

$text-color: color($colors, dark);
$tabs-tab-color-active: color($colors, light);
$tabs-tab-color-inactive: color($colors, light);


// App iOS Variables
// --------------------------------------------------
// iOS only Sass variables can go here


// App Material Design Variables
// --------------------------------------------------
// Material Design only Sass variables can go here


$tabs-md-tab-color-inactive: color($colors, light);


// App Windows Variables
Expand All @@ -68,7 +71,7 @@ $colors: (
// The premium icon font for Ionic. For more info, please see:
// http://ionicframework.com/docs/v2/ionicons/

@import "ionicons";
@import "ionic.ionicons";


// Fonts
Expand Down