Skip to content

Commit

Permalink
Project rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Machado authored and Adrian Machado committed Jul 9, 2019
1 parent 2e2ae67 commit fb419d9
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 72 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# rately
Currency conversion calculator for kaios
# KaiUI

UI Component library for building KaiOS apps
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
type="text/css"
href="/shared/elements/gaia-icons/gaia-icons.css"
/>
<title>Rately</title>
<title>KaiUI</title>
</head>

<body>
Expand Down
12 changes: 6 additions & 6 deletions manifest.webapp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Rately",
"name": "KaiUI Demo",
"version": "1.0.0",
"description": "A kaiOS Currency Conversion Calculator",
"description": "A demo app for KaiUI components",
"launch_path": "/index.html",
"icons": {
"56": "/icons/rately56x56.png",
Expand All @@ -13,15 +13,15 @@
},
"locale": {
"en-US":{
"name": "Rately",
"description": "A kaiOS Currency Conversion Calculator"
"name": "KaiUI Demo",
"description": "A demo app for KaiUI components"
}
},
"default_locale": "en-US",
"subtitle": "Quick Currency Conversion Calculator",
"subtitle": "Small demo app for KaiUI",
"permissions":{
"input":{
"description": "Required to enter currency values"
"description": "Required to enter values"
}
},
"orientation": [ "portrait-primary" ]
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "rately",
"name": "KaiUI",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function App() {

return (
<div className="App">
<Header text="rately" />
<Header text="KaiUI" />
<TabView tabLabels={['checkboxes', 'icons', '3 Text', 'body-arr']}>
<ListView>
<CheckboxListItem
Expand Down
60 changes: 0 additions & 60 deletions src/theme/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -162,63 +162,3 @@ input {

--header-color: var(--color-beta);
}

.rately-theme {
/** Background
---------------------------------------------------------*/

--background: var(--color-pink);
--background-title: var(--color-white);
--background-plus: var(--color-beta);
--background-minus: var(--color-epsilon);
--background-minus-minus: var(--color-zeta);

/** Highlight
---------------------------------------------------------*/

--highlight-color: var(--color-lime);

/** Borders
---------------------------------------------------------*/

--border-color: var(--color-theta);

/** Titles
---------------------------------------------------------*/

--title-color: var(--background-title);

/** Buttons
---------------------------------------------------------*/

--button-background: var(--background-plus);

/** Switch
---------------------------------------------------------*/

--switch-background: var(--background-minus-minus);

/** Checkbox
---------------------------------------------------------*/

--checkbox-border-color: var(--background-minus-minus);

/** Inputs
---------------------------------------------------------*/

--input-background: var(--background-plus);

/** Text Input
---------------------------------------------------------*/

--text-input-background: var(--background-minus);

/** Header
---------------------------------------------------------*/

--header-color: var(--title-color);
--header-background: var(--color-wathetblue); /*changed*/
--header-button-color: var(--highlight-color);
--header-disabled-button-color: var(--color-theta);
--header-action-button-color: var(--title-color);
}

0 comments on commit fb419d9

Please sign in to comment.