-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1128 lines (974 loc) · 39.6 KB
/
index.html
File metadata and controls
1128 lines (974 loc) · 39.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Andrew Battenburg</title>
<meta name="description" content="Andrew Battenburg's website.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="r/img/face.png">
<link rel="stylesheet" href="r/css/normalize.min.css">
<!--<link rel="stylesheet" href="http://yui.yahooapis.com/combo?pure/0.6.0/base-min.css&pure/0.6.0/grids-min.css&pure/0.6.0/grids-responsive-min.css">-->
<link rel="stylesheet" href="r/css/pure-grids.css">
<link rel="stylesheet" href="r/css/main.css">
<link rel="stylesheet" href="r/css/mobile.css">
<link rel="stylesheet" href="r/css/components.css">
<!--<script src="r/js/modernizr-2.8.3-respond-1.4.2.min.js"></script>-->
<script src="https://use.fontawesome.com/42c9dfa299.js"></script>
<!--GA-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-86585411-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="pure-g">
<!--[if lt IE 8]>
<p class="browserupgrade pure-u-1">
What are you doin' using an old version of <i class="fa fa-internet-explorer"></i>?
<a href="http://browsehappy.com/" target="_blank">You know better</a>.
</p>
<![endif]-->
<aside class="pure-u-1 pure-u-sm-1-3 pure-u-md-1-3 pure-u-lg-1-4">
<button class="menu">
≡ Menu
</button>
<nav>
<ul>
<li>
<a href="#main">Introductions</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#work">Work</a>
</li>
<li>
<a href="#uiux">UI + UX</a>
</li>
<li>
<a href="#photography">Photography</a>
</li>
</ul>
</nav>
</aside>
<main class="pure-u-1 pure-u-sm-2-3 pure-u-md-2-3 pure-u-lg-2-3">
<article>
<!--Introduction-->
<section id="main">
<h1>
Hi, I'm
<br>
<strong>Andrew Battenburg</strong><span>.</span>
</h1>
<p>
I'm a software designer, specializing in responsive and mobile web.
You'll usually find me developing prototypes, writing requirements, designing UI kits, and front end coding.
</p>
<p>
In 2007 I moved to Seattle to learn how to build for the web and join start ups.
Four years later I graduated from University of Washington with a focus on Human
Computer Interaction and had two companies under the belt.
</p>
<p>
If I'm not cooking, taking photos, or traveling, I'll be supporting eSports
or laying some smack down in Super Smash.
I prefer telling silly jokes in person rather than on social media.
</p>
<h3>Contact</h3>
<p>
Feel free to email me at
<a href="mailto:abattenb@gmail.com?Subject=I%20saw%20your%20portfolio%20and%20it%20was%20awesome">abattenb@gmail.com</a>
or, if you prefer, you can send me a
<a href="https://www.linkedin.com/in/andrew-battenburg-290521117">LinkedIn</a>
message.
</p>
</section>
<section id="projects" class="components">
<h2>Projects</h2>
<p>
A place to house some side projects. They might be for trying out a new framework or exploring how something works without the constraints of deep browser support.
</p>
<!--Typeboard-->
<h3>
Typeboard
</h3>
<img src="r/img/banner/typeboard_banner.jpg" class="pure-img" alt="banner for Typeboard">
<p>
A tool to analyzing Google Fonts and their glyphs.
Useful for comparing line lengths, glyph shapes, and color contrasts.
Try out the random typeface and color palette feature!
</p>
<a href="https://abattenb.github.io/typeboard/">
Typeboard - A Google Font comparison tool
</a>
<!--ColdPress-->
<h3>
ColdPress
</h3>
<img src="r/img/banner/cold_press_banner.jpg" class="pure-img" alt="banner for ColdPress">
<p>
A responsive dashboard concept for a mock service called 'ColdPress'.
The start of a universe where that Foxglove and The News! also reside.
Keep any eye out for further refinements on characters, services, and themes.
</p>
<a href="coldpress">
ColdPress - Responsive Dashboard Concept
</a>
<!--Hitman-->
<h3>
Hitman Tribute
</h3>
<img src="r/img/banner/hitman_banner.jpg" class="pure-img" alt="banner for Hitman">
<p>
I fell in love with the design and typographical touches in the game 'Hitman' (2016).
This is a tribute to some of those moments, done in SVG, CSS, and JS. It should work on
mobile, but elements are more impressive on a big screen.
</p>
<a href="hitman">
Hitman Tribute
</a>
<!--Foxglove-->
<h3>
Foxglove.js
</h3>
<img src="r/img/banner/foxglove_banner.jpg" class="pure-img" alt="banner for Truth News">
<p>
A (satircal) template for a modern framework marketing page.
Uses Flexbox and Skeleton with responsive ordering, CSS charts, and SVG animation.
</p>
<a href="foxglove">
Foxglove.js
</a>
<!--The News-->
<h3>
The News
</h3>
<img src="r/img/banner/news_banner.jpg" class="pure-img" alt="banner for Truth News">
<p>
Growing up reading The Onion, I wanted to do my own take on the current news site format.
Done in Flexbox and fully responsive, "The News" is a parody site that should tickle you just a bit.
</p>
<a href="truth">
The News - Truth You Can Agree With
</a>
<!--Indeed-->
<h3>
Modernizing Indeed's Job Listings
</h3>
<img src="r/img/banner/indeed_banner.jpg" class="pure-img" alt="banner for Indeed article">
<p>
A short article on improving the usability and design of Indeed's job listings using Stylish.
Covers broadening the typography, creating a stronger visual hierarchy, and redefining click targets in the main navigation.
</p>
<p>
Follow along with the Stylish script or compare with before and afters.
</p>
<a href="indeed.html">
Modernizing Indeed's Job Listings - Designing with Stylish
</a>
</section>
<!--Projects-->
<section id="work">
<h2>Work</h2>
<h3>
renticity
</h3>
<div class="product_shots">
<img src="r/img/screenshots/product/product_shot2.jpg" alt="Product family">
<img src="r/img/screenshots/product/landlord_message.png" alt="Mobile screenshot of messaging">
<img src="r/img/screenshots/product/landlord_screening.png" alt="Tablet screenshot of screening">
<img src="r/img/screenshots/product/renter_search.png" alt="Mobile screenshot of renter search">
</div>
<img src="r/img/logos/renticity.png" class="logos" alt="renticity logo">
<p>
In 2013 I joined Renticity as Lead Designer to create a set of tools for landlords and renters.
We set out to to build the complete rental package; list properties, screen applications, sign leases,
and pay rent, all online and all on the go.
</p>
<div class="thumbs">
<a href="r/img/screenshots/dashboard.png">
<img src="r/img/thumbs/dashboard.jpg" alt="dashboard thumbnail">
</a>
<a href="r/img/screenshots/details.png">
<img src="r/img/thumbs/details.jpg" alt="details thumbnail">
</a>
<a href="r/img/screenshots/homepage.png">
<img src="r/img/thumbs/homepage.jpg" alt="homepage thumbnail">
</a>
<a href="r/img/screenshots/lease.png">
<img src="r/img/thumbs/lease.jpg" alt="lease thumbnail">
</a>
<a href="r/img/screenshots/listing.png">
<img src="r/img/thumbs/listing.jpg" alt="listing thumbnail">
</a>
<a href="r/img/screenshots/map.png">
<img src="r/img/thumbs/map.jpg" alt="map thumbnail">
</a>
<a href="r/img/screenshots/photos.png">
<img src="r/img/thumbs/photos.jpg" alt="photos thumbnail">
</a>
<a href="r/img/screenshots/settings.png">
<img src="r/img/thumbs/settings.jpg" alt="settings thumbnail">
</a>
</div>
<p>
Our searchable map included both organic listings and aggregate data from 3rd party sources.
Renter applications to listings were all digital, which allowed us to offer near-instant credit and criminal
background checks. Once an application was accepted, landlords could either upload their lease
or use Renticity's own lease to send to renters to eSign. Renters could pay for their deposits,
rent, and utilities online as well. Everything together, online, mobile, and integrated.
</p>
<h3>
buuteeq
</h3>
<img src="r/img/logos/buuteeq.png" class="logos" alt="buuteeq logo">
<p>
Buuteeq was a content platform for hotels to
<a href="r/img/screenshots/buuteeq_maxwell.png" target="_blank">market</a>
and
<a href="r/img/screenshots/buuteeq_lian.png" target="_blank">book online</a>.
I was brought on as part of the front end design team, implementing redlines, design comps, and
browser support. Clients often had special requests and I worked
closely with them for special features and additional services such as advertising.
</p>
<p>
In 2012 we were transitioning from a fixed grid system to responsive design while also supporting browsers
all the way back to IE6, FF3, and iOS 4. Two years later Buuteeq sold and absorbed by Priceline Group.
</p>
<h3>
shiftalliance
</h3>
<img src="r/img/logos/shiftalliance.png" class="logos" alt="shiftalliance logo">
<p>
shiftalliance was founded on the idea that
<i>"doing the right thing"</i> and <i>"successful business"</i>
were intrinsically linked.
We built business models that at their core brought value and delight to both the customers and the business.
I was responsible for business research and lead a student team the University of Washington as a part of the Capstone Project.
</p>
</section>
<!--UI + UX-->
<section id="uiux" class="components">
<h2>UI + UX</h2>
<h3>UI Kit</h3>
<p>
For any project I always design a kit of UI elements to pull from. Software is a collection of components;
headers, text, photos, and buttons. When the pieces are robust, the whole is easier and faster
to develop.
</p>
<p>
Below you'll find some highlights from my most recent kit.
High contrast colors, clear UI states, and playful animations allowed for accessibility to be a design priority.
A full screenshot of the full kit I developed for renticity can be
<a href="r/img/ui_kit.png">seen here</a>.
</p>
<div class="thumbs">
<a href="r/img/screenshots/uikit1.png">
<img src="r/img/thumbs/uikit1.jpg" alt="UI Kit 1">
</a>
<a href="r/img/screenshots/uikit2.png">
<img src="r/img/thumbs/uikit2.jpg" alt="UI Kit 2">
</a>
<a href="r/img/screenshots/uikit3.png">
<img src="r/img/thumbs/uikit3.jpg" alt="UI Kit 3">
</a>
<a href="r/img/screenshots/uikit4.png">
<img src="r/img/thumbs/uikit4.jpg" alt="UI Kit 4">
</a>
</div>
<h4>Buttons</h4>
<p>
Most buttons improperly omit focus and active states, which are necessary for keyboard navigation
and user feedback. Embracing these states makes buttons not only more accessible, but so much more satisfying.
Go ahead and give them a try!
</p>
<button type="button" class="btn btn-default">
◇
Default
</button>
<button type="button" class="btn btn-primary">
◉
Primary
</button>
<button type="button" class="btn btn-danger">
▽
Danger
</button>
<br>
<br>
<button type="button" class="btn btn-default btn-outline">
◇
Default
</button>
<button type="button" class="btn btn-primary btn-outline">
◉
Primary
</button>
<button type="button" class="btn btn-danger btn-outline">
▽
Danger
</button>
<br>
<br>
<button type="button" class="btn btn-default btn-link">
◇
Default
</button>
<button type="button" class="btn btn-primary btn-link">
◉
Primary
</button>
<button type="button" class="btn btn-danger btn-link">
▽
Danger
</button>
<br>
<br>
<button type="button" class="btn btn-default disabled">
◇
Default
</button>
<button type="button" class="btn btn-primary disabled">
◉
Primary
</button>
<button type="button" class="btn btn-danger disabled">
▽
Danger
</button>
<!--<h4>Card</h4>-->
<!--<div class="card">-->
<!--<img src="r/img/blank_circle.gif" alt="blank image of ned, my desktop monstser">-->
<!--<div class="title">-->
<!--Tina's Birthday-->
<!--</div>-->
<!--<div>-->
<!--Hey it's by birthday, you're all invited to come over! Start's at 6 this Wednesday.-->
<!--</div>-->
<!--<div class="small text-right">-->
<!--Date: 1234-->
<!--</div>-->
<!--</div>-->
<h4>Loading Icon</h4>
<p>
I wanted to create a more playful loading icon instead of the standard <i class="fa fa-spinner fa-spin fa-fw"></i>.
The bouncing animation and changing colors hold your attention for long enough to load.
If, for some reason, the load time is extra long (30+ seconds), there is an easter egg to find.
</p>
<div class="spinx3">
<div class="ball_shadow"></div>
<div class="ball"></div>
<p>Loading party invites…</p>
</div>
<h4>Side Navigation</h4>
<p>
Just like buttons, many sets of navigation don't include differentiating "active" and "hover" states.
If you route by relative URL, use anchor tags, if by JS, use buttons, that way the keyboard can focus the navigation.
</p>
<nav>
<ul role="menu">
<li>
<button>
<i class="fa fa-home"></i>
Dashboard
</button>
</li>
<li>
<button>
<i class="fa fa-envelope-o"></i>
Messages
<span>3</span>
</button>
</li>
<li class="active">
<button>
<i class="fa fa-gift"></i>
Parties
</button>
</li>
<li>
<button>
<i class="fa fa-search"></i>
Search
</button>
</li>
<li>
<button>
<i class="fa fa-heart-o"></i>
Liked
</button>
</li>
<li>
<button>
<i class="fa fa-cog" ></i>
Settings
</button>
</li>
</ul>
</nav>
<h4>Dropdown</h4>
<p>
With enough elbow grease, you can get all dropdowns, including Google Places' autocomplete and Bootstrap's
dropdown, to use the same styling. I like to sneak in subtle color styling to convey the importance of
an action.
</p>
<div class="dropdown">
<button class="btn btn-default btn-outline" aria-haspopup="true" aria-expanded="false">
More <i class="fa fa-caret-down"></i>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<li class="primary">
<button>New</button>
</li>
<li class="divider"></li>
<li>
<button>Rename</button>
</li>
<li>
<button>Move</button>
</li>
<li>
<button>Save</button>
</li>
<li class="divider"></li>
<li class="danger">
<button>Delete</button>
</li>
<!--<li><div class="divider"></div></li>-->
</ul>
</div>
<h4>Alerts</h4>
<p>
I prefer big buttons, generous hitboxes,
and clear, concise feedback. Never lie to the user, you'll only get a support ticket later.
</p>
<h5>Small</h5>
<p>
Useful for inline validation, auto saving, or small notices.
</p>
<div class="alert alert-sm alert-info" role="alert">
<i class="fa fa-send"></i>
<p>
Send party invites 2 weeks out for the best turnout.
</p>
</div>
<div class="alert alert-sm alert-success" role="alert">
<i class="fa fa-save"></i>
<p>
Party information auto-saved.
</p>
</div>
<div class="alert alert-sm alert-error" role="alert">
<i class="fa fa-warning"></i>
<p>
Are you sure your birthday is in the future?
</p>
</div>
<h5>Medium</h5>
<p>
Great for "banana bar" messages or in-page feedback with an action.
</p>
<div class="alert alert-info" role="alert">
<i class="fa fa-thumbs-o-up"></i>
<p>
Party invite sent successfully!
</p>
<button class="btn btn-default pull-right">Read Invite</button>
</div>
<div class="alert alert-success" role="alert">
<i class="fa fa-beer"></i>
<p>
You just got invited to a party!
</p>
<button class="btn btn-primary pull-right">Accept Invite!</button>
</div>
<div class="alert alert-error" role="alert">
<i class="fa fa-bomb"></i>
<p>
The party <span class="bold">crashed</span>! Oh no!
</p>
<button class="btn btn-danger pull-right">Reboot Party</button>
</div>
<h5>Large</h5>
<p>
Awesome for blank screen UX or upsells.
</p>
<div class="alert alert-lg alert-success" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</div>
<div>
Your birthday is coming up, let's celebrate it! Creating and inviting people to your party is easy, cutting cake is the hard part.
</div>
<button class="btn btn-primary btn-lg xs-block">Create Party</button>
</div>
<div class="alert alert-lg alert-info" role="alert">
<div class="fa fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-magic fa-stack-1x fa-inverse"></i>
</div>
<div>
You can make a new Party for more than just birthdays. New Year celebrations, Mother's Day, or weekend chillin' work with Party-o-Matic 2000.
</div>
<button class="btn btn-default btn-outline btn-lg xs-block">New Party</button>
</div>
<h4>Messages</h4>
<p>
A classic, responsive, all CSS take on a Messages design.
</p>
<div class="message you">
<div class="user_name">
You
</div>
<!--Needs to stay in one line to render properly-->
<div class="message_body freetext">Hey, would you like to come to my party? We are going to play ring toss with a live unicorn! ⭕ 🦄 🏆</div>
<div class="text-center small">
12:34 PM 10/03/16
</div>
</div>
<div class="message them">
<div class="user_name">
Tina Anderson
</div>
<!--Needs to stay in one line to render properly-->
<div class="message_body freetext">Oh that sounds really cool 😃 I'm there!</div>
<div class="text-center small">
1:54 PM Yesterday
</div>
</div>
<h4>Color Table</h4>
<p>
I always create brand table for easy, cross-application color look up.
Each color has enough contrast such that any three shade or tint steps away meets at least
<a href="http://webaim.org/resources/contrastchecker/" target="_blank">WCAG AA</a> accessibility standards.
</p>
<table class="color_table responsive-table">
<thead>
<tr>
<th>Color</th>
<th>Name</th>
<th>Hex</th>
<th>RGB</th>
<th>Classes</th>
<th>Usage</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="lightgrey_bg"></span>
</td>
<td class="lightgrey">
Light Grey
</td>
<td>
#FAFAFB
</td>
<td>
rgba(250, 250, 251, 1)
</td>
<td>
.lightgrey_bg
<br>
.lightgrey
</td>
<td>
Backgrounds
</td>
</tr>
<tr>
<td>
<span class="softgrey_bg"></span>
</td>
<td class="softgrey">
Soft Grey
</td>
<td>
#C7C9CA
</td>
<td>
rgba(199, 201, 202, 1)
</td>
<td>
.softgrey_bg
<br>
.softgrey
</td>
<td></td>
</tr>
<tr>
<td>
<span class="grey_bg"></span>
</td>
<td class="grey">
Grey
</td>
<td>
#949697
</td>
<td>
rgba(148, 150, 151, 1)
</td>
<td>
.grey_bg
<br>
.grey
</td>
<td></td>
</tr>
<tr>
<td>
<span class="hardgrey_bg"></span>
</td>
<td class="hardgrey">
Hard Grey
</td>
<td>
#525556
</td>
<td>
rgba(82, 85, 86, 1)
</td>
<td>
.hardgrey_bg
<br>
.hardgrey
</td>
<td>
</td>
</tr>
<tr>
<td>
<span class="darkgrey_bg"></span>
</td>
<td class="darkgrey">
Dark Grey
</td>
<td>
#323333
</td>
<td>
rgba(50, 51, 51, 1)
</td>
<td>
.darkgrey_bg
<br>
.darkgrey
</td>
<td>
Text
</td>
</tr>
<tr>
<td>
<span class="lightblue_bg"></span>
</td>
<td class="lightblue">
Light Blue
</td>
<td>
#F4F9EF
</td>
<td>
rgba(244, 249, 239, 1)
</td>
<td>
.lightblue_bg
<br>
.lightblue
</td>
<td></td>
</tr>
<tr>
<td>
<span class="softblue_bg"></span>
</td>
<td class="softblue">
Soft Blue
</td>
<td>
#81C786
</td>
<td>
rgba(129, 199, 134, 1)
</td>
<td>
.softblue_bg
<br>
.softblue
</td>
<td></td>
</tr>
<tr>
<td>
<span class="blue_bg"></span>
</td>
<td class="blue">
Blue
</td>
<td>
#10AD4E
</td>
<td>
rgba(16, 173, 78, 1)
</td>
<td>
.blue_bg
<br>
.blue
</td>
<td>
Branding
<br>
CTA
</td>
</tr>
<tr>
<td>
<span class="hardblue_bg"></span>
</td>
<td class="hardblue">
Hard Blue
</td>
<td>
#048044
</td>
<td>
rgba(4, 128, 68, 1)
</td>
<td>
.hardblue_bg
<br>
.hardblue
</td>
<td>
Links
</td>
</tr>
<tr>
<td>
<span class="darkblue_bg"></span>
</td>
<td class="darkblue">
Dark Blue
</td>
<td>
#084C33
</td>
<td>
rgba(8, 76, 51, 1)
</td>
<td>
.darkblue_bg
<br>
.darkblue
</td>
<td>
Shadowing
</td>
</tr>
<tr>
<td>
<span class="lightpink_bg"></span>
</td>
<td class="lightpink">
Light Pink
</td>
<td>
#FFF8F9
</td>
<td>
rgba(255, 248, 249, 1)
</td>
<td>
.lightpink_bg
<br>
.lightpink
</td>
<td></td>
</tr>
<tr>
<td>
<span class="softpink_bg"></span>
</td>
<td class="softpink">
Soft Pink
</td>
<td>
#FF8D90
</td>
<td>
rgba(255, 141, 144, 1)
</td>
<td>
.softpink_bg
<br>
.softpink
</td>
<td></td>
</tr>
<tr>
<td>
<span class="pink_bg"></span>
</td>
<td class="pink">
Pink
</td>
<td>
#FF675D
</td>
<td>
rgba(255, 103, 93, 1)
</td>
<td>
.pink_bg
<br>
.pink
</td>
<td>
Favoriting
<br>
Deleting
</td>
</tr>
<tr>
<td>
<span class="hardpink_bg"></span>
</td>
<td class="hardpink">
Hard Pink
</td>
<td>
#BF4949
</td>
<td>
rgba(191, 73, 73, 1)
</td>
<td>
.hardpink_bg
<br>
.hardpink
</td>
<td></td>
</tr>
<tr>
<td>
<span class="darkpink_bg"></span>
</td>
<td class="darkpink">
Dark Pink
</td>
<td>
#7F2525
</td>
<td>
rgba(127, 37, 37, 1)
</td>
<td>
.darkpink_bg
<br>
.darkpink
</td>
<td></td>
</tr>
</tbody>
</table>
<h3>UX Process</h3>