-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweatherQuotes.js
112 lines (111 loc) · 2.28 KB
/
weatherQuotes.js
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
const weatherQuotes = [
{
text: "And I never never ever do a thing about the weather for the weather never ever does a thing for me!",
source: "Some sailor, probably",
color: "#303288",
minTemp: 30,
maxTemp: 85,
},
{
text: "Baby it's cold outside!",
source: "Frank Loesser",
color: '#116633',
maxTemp: 35,
},
{
text: "Wear a sweater!",
source: "Mom",
color: '#882244',
minTemp: 35,
maxTemp: 50,
precipitation: false,
maxWindSpeed: 10,
},
{
text: "Don't forget your umbrella!",
source: "Mom",
color: '#882244',
condition: "Rain",
maxWindSpeed: 22,
},
{
text: "Wear your mittens!",
source: "Mom",
color: '#882244',
maxTemp: 31,
},
{
text: "Bundle up, or the cold wind will give you frostbite!",
source: "Mom",
color: '#882244',
maxTemp: 31,
minWindSpeed: 12,
},
{
text: "Plan for double your usual travel time. Where there's snow, there's delays.",
source: "Dad",
color: '#334488',
condition: "Snow",
},
{
text: "You might as well be walkin' on the sun",
source: "Smash Mouth",
color: '#dd8811',
minTemp: 90,
condition: "clear",
precipitation: false,
},
{
text: "Man, it's a hot one, like seven inches from the midday sun",
source: "Rob Thomas",
color: '#992010',
minTemp: 90,
precipitation: false,
},
{
text: "Looks like good kite flying weather!",
source: "Dad",
color: '#334488',
minTemp: 40,
maxTemp: 90,
precipitation: false,
minWindSpeed: 10,
maxWindSpeed: 30,
},
{
text: "Some time outside would do you some good.",
source: "Mom",
color: '#882244',
minTemp: 50,
maxTemp: 80,
precipitation: false,
maxWindSpeed: 20,
},
{
text: "Did you put on sunscreen?",
source: "Mom",
color: '#882244',
minTemp: 65,
condition: "Clear",
},
{
text: "Who wants to go hiking?",
source: "Dad",
color: '#334488',
minTemp: 45,
maxTemp: 80,
precipitation: false,
maxWindSpeed: 30,
},
{
text: "Don't track mud into the house!",
source: "Mom",
color: '#882244',
condition: "Rain",
},
];
const defaultWeatherQuote = {
text: "Some weather we're having!",
source: "Dad",
color: '#334488',
};