From 33b60db5410ba29414d7c8539ead78792df0eb29 Mon Sep 17 00:00:00 2001
From: TorIsHere <kittikorn.a@gmail.com>
Date: Mon, 15 Jun 2015 19:45:11 +0900
Subject: [PATCH] Change search view color

---
 benri/SearchViewController.swift | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/benri/SearchViewController.swift b/benri/SearchViewController.swift
index fcb191b..089d22d 100644
--- a/benri/SearchViewController.swift
+++ b/benri/SearchViewController.swift
@@ -106,7 +106,7 @@ class SearchViewController: UIViewController, UIPickerViewDataSource, UIPickerVi
     private func addBlurPage() {
         self.view.backgroundColor = UIColor.clearColor()
         
-        let blurEffect:UIBlurEffect = UIBlurEffect(style: UIBlurEffectStyle.Dark
+        let blurEffect:UIBlurEffect = UIBlurEffect(style: UIBlurEffectStyle.Light
         )
         let bluredEffectView = UIVisualEffectView(effect: blurEffect)
         let screenFrame = UIScreen.mainScreen().bounds
@@ -161,7 +161,7 @@ class SearchViewController: UIViewController, UIPickerViewDataSource, UIPickerVi
             label.adjustsFontSizeToFitWidth = true
             label.opaque = false
             label.textAlignment = NSTextAlignment.Center
-            label.textColor = UIColor.whiteColor()
+            label.textColor = UIColor.blackColor()
             label.clipsToBounds = false
             
             return label