Skip to content

Commit 263b051

Browse files
Jen Lukertimdorr
Jen Luker
authored andcommitted
attempting to update the color scheme, and added a couple a11y fixes to the logo (reduxjs#2766)
1 parent 99a83a5 commit 263b051

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# <a href='http://redux.js.org'><img src='https://camo.githubusercontent.com/f28b5bc7822f1b7bb28a96d8d09e7d79169248fc/687474703a2f2f692e696d6775722e636f6d2f4a65567164514d2e706e67' height='60'></a>
1+
# <a href='http://redux.js.org'><img src='https://camo.githubusercontent.com/f28b5bc7822f1b7bb28a96d8d09e7d79169248fc/687474703a2f2f692e696d6775722e636f6d2f4a65567164514d2e706e67' height='60' alt='Redux Logo' aria-label='Redux.js.org' /></a>
22

33
Redux is a predictable state container for JavaScript apps.
44
(Not to be confused with a WordPress framework – [Redux Framework](https://reduxframework.com/).)
@@ -19,7 +19,7 @@ It is tiny (2kB, including dependencies).
1919
>**[Part 1: Getting Started with Redux](https://egghead.io/series/getting-started-with-redux) (30 free videos)**<br>
2020
>**[Part 2: Building React Applications with Idiomatic Redux](https://egghead.io/courses/building-react-applications-with-idiomatic-redux) (27 free videos)**
2121
22-
### Testimonials
22+
## Testimonials
2323

2424
>[“Love what you're doing with Redux”](https://twitter.com/jingc/status/616608251463909376)
2525
>Jing Chen, creator of Flux
@@ -30,21 +30,21 @@ It is tiny (2kB, including dependencies).
3030
>[“It's cool that you are inventing a better Flux by not doing Flux at all.”](https://twitter.com/andrestaltz/status/616271392930201604)
3131
>André Staltz, creator of Cycle
3232
33-
### Before Proceeding Further
33+
## Before Proceeding Further
3434

3535
>**Also read:**
3636
>**[You Might Not Need Redux](https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367)**
3737
38-
### Developer Experience
38+
## Developer Experience
3939

4040
I wrote Redux while working on my React Europe talk called [“Hot Reloading with Time Travel”](https://www.youtube.com/watch?v=xsSnOQynTHs). My goal was to create a state management library with minimal API but completely predictable behavior, so it is possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer.
4141

42-
### Influences
42+
## Influences
4343

4444
Redux evolves the ideas of [Flux](http://facebook.github.io/flux/), but avoids its complexity by taking cues from [Elm](https://github.com/evancz/elm-architecture-tutorial/).
4545
Whether you have used them or not, Redux only takes a few minutes to get started with.
4646

47-
### Installation
47+
## Installation
4848

4949
To install the stable version:
5050

@@ -62,7 +62,7 @@ If you don't use a module bundler, it's also fine. The `redux` npm package inclu
6262

6363
The Redux source code is written in ES2015 but we precompile both CommonJS and UMD builds to ES5 so they work in [any modern browser](http://caniuse.com/#feat=es5). You don't need to use Babel or a module bundler to [get started with Redux](https://github.com/reactjs/redux/blob/master/examples/counter-vanilla/index.html).
6464

65-
#### Complementary Packages
65+
### Complementary Packages
6666

6767
Most likely, you'll also need [the React bindings](https://github.com/reactjs/react-redux) and [the developer tools](https://github.com/gaearon/redux-devtools).
6868

@@ -73,7 +73,7 @@ npm install --save-dev redux-devtools
7373

7474
Note that unlike Redux itself, many packages in the Redux ecosystem don't provide UMD builds, so we recommend using CommonJS module bundlers like [Webpack](https://webpack.js.org/) and [Browserify](http://browserify.org/) for the most comfortable development experience.
7575

76-
### The Gist
76+
## The Gist
7777

7878
The whole state of your app is stored in an object tree inside a single *store*.
7979
The only way to change the state tree is to emit an *action*, an object describing what happened.
@@ -135,7 +135,7 @@ If you're coming from Flux, there is a single important difference you need to u
135135

136136
This architecture might seem like an overkill for a counter app, but the beauty of this pattern is how well it scales to large and complex apps. It also enables very powerful developer tools, because it is possible to trace every mutation to the action that caused it. You can record user sessions and reproduce them just by replaying every action.
137137

138-
### Learn Redux from Its Creator
138+
## Learn Redux from Its Creator
139139

140140
[Getting Started with Redux](https://egghead.io/series/getting-started-with-redux) is a video course consisting of 30 videos narrated by Dan Abramov, author of Redux. It is designed to complement the “Basics” part of the docs while bringing additional insights about immutability, testing, Redux best practices, and using Redux with React. **This course is free and will always be.**
141141

@@ -156,11 +156,11 @@ This architecture might seem like an overkill for a counter app, but the beauty
156156
157157
So, what are you waiting for?
158158

159-
#### [Watch the 30 Free Videos!](https://egghead.io/series/getting-started-with-redux)
159+
### [Watch the 30 Free Videos!](https://egghead.io/series/getting-started-with-redux)
160160

161161
If you enjoyed my course, consider supporting Egghead by [buying a subscription](https://egghead.io/pricing). Subscribers have access to the source code of every example in my videos and tons of advanced lessons on other topics, including JavaScript in depth, React, Angular, and more. Many [Egghead instructors](https://egghead.io/instructors) are also open source library authors, so buying a subscription is a nice way to thank them for the work that they've done.
162162

163-
### Documentation
163+
## Documentation
164164

165165
* [Introduction](http://redux.js.org/docs/introduction/index.html)
166166
* [Basics](http://redux.js.org/docs/basics/index.html)
@@ -175,7 +175,7 @@ For PDF, ePub, and MOBI exports for offline reading, and instructions on how to
175175

176176
For Offline docs, please see: [devdocs](http://devdocs.io/redux/)
177177

178-
### Examples
178+
## Examples
179179

180180
Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online.
181181

@@ -192,11 +192,11 @@ Almost all examples have a corresponding CodeSandbox sandbox. This is an interac
192192

193193
If you're new to the NPM ecosystem and have troubles getting a project up and running, or aren't sure where to paste the gist above, check out [simplest-redux-example](https://github.com/jackielii/simplest-redux-example) that uses Redux together with React and Browserify.
194194

195-
### Discussion
195+
## Discussion
196196

197197
Join the [#redux](https://discord.gg/0ZcbPKXt5bZ6au5t) channel of the [Reactiflux](http://www.reactiflux.com) Discord community.
198198

199-
### Thanks
199+
## Thanks
200200

201201
* [The Elm Architecture](https://github.com/evancz/elm-architecture-tutorial) for a great intro to modeling state updates with reducers;
202202
* [Turning the database inside-out](http://www.confluent.io/blog/turning-the-database-inside-out-with-apache-samza/) for blowing my mind;
@@ -211,16 +211,16 @@ Join the [#redux](https://discord.gg/0ZcbPKXt5bZ6au5t) channel of the [Reactiflu
211211

212212
Special thanks to [Jamie Paton](http://jdpaton.github.io) for handing over the `redux` NPM package name.
213213

214-
### Logo
214+
## Logo
215215

216216
You can find the official logo [on GitHub](https://github.com/reactjs/redux/tree/master/logo).
217217

218-
### Change Log
218+
## Change Log
219219

220220
This project adheres to [Semantic Versioning](http://semver.org/).
221221
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/reactjs/redux/releases) page.
222222

223-
### Patrons
223+
## Patrons
224224

225225
The work on Redux was [funded by the community](https://www.patreon.com/reactdx).
226226
Meet some of the outstanding companies that made it possible:
@@ -230,6 +230,6 @@ Meet some of the outstanding companies that made it possible:
230230

231231
[See the full list of Redux patrons](PATRONS.md), as well as the always-growing list of [people and companies that use Redux](https://github.com/reactjs/redux/issues/310).
232232

233-
### License
233+
## License
234234

235235
MIT

build/gitbook.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}
55

66
.book-summary ul.summary li a:hover {
7-
color: #008cff;
7+
color: #0070CC;
88
text-decoration: none;
99
}
1010

@@ -14,7 +14,7 @@ pre[class*="language-"] {
1414
}
1515

1616
.color-theme-2 .token.keyword {
17-
color: #3ac;
17+
color: #24788F;
1818
}
1919

2020
.token.operator {

0 commit comments

Comments
 (0)